I\'m trying to make radio stream chrome extension but there is a problem. When I run my script in browser like normal JS+HTML+CSS it works, but when I try runing it like Chr
Your problems are as follows:
Chrome CSP forbids inline code, and this is not subject to override. Your 'unsafe-eval' does not address the issue, and 'unsafe-inline' that would've helped will be ignored by Chrome.
You need to get rid of inline code:
This needs to be moved in a js file.
There is a typo in your manifest.json, you forgot a comma:
"version": "1.0",
In general, using a JSON validator can help you catch those errors.