I’m getting the message ‘Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”).’ in my console.
My extension is structured as such:
jquery.min.js,
manifest.json,
options.html,
potato.png,
script.js,
I believe the header of my options.html is the issue:
<head>
<title>Rotten Potatoes</title>
<script src="jquery.min.js"></script>
<script src="script.js"></script>
<link rel="shortcut icon" type="image/png" href="potato.png"/>
</head>
Anyone have any ideas how to get rid of this? Via the manifest maybe?