Firefox Content Security Policy in Add on/extension

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?

Do you use the oneventname way to add event listeners?

Or it could be somewhere else entirely.
We won’t know until you zip the entire extension and upload it somewhere for us to take a look at.