I am coding a chrome extension for first time. Read out their documentation well, specially permission section.
I want to load a JSON response from my localhost with a specific port ex. 3000.
I updated my mainfest.json and persssion section is like
"permissions": [
"http://localhost:3000/*"
],
But getting XMLHttpRequest cannot load http://localhost:3000/project/data.json Origin null is not allowed by Access-Control-Allow-Origin.
Seems I am missing something.
What am I missing?