-
Any idea how I can solve this issue in Firefox with Manifest Version 3?
I'm not allowed to use the inline script. <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./popup.css" />
<title>Popup</title>
</head>
<body></body>
<script type="module" src="./popup.ts"></script>
</html> |
Beta Was this translation helpful? Give feedback.
Answered by
aklinker1
Nov 28, 2023
Replies: 1 comment
-
This is a bug in Firefox. I've reported it here already: https://bugzilla.mozilla.org/show_bug.cgi?id=1864284 For now, dev mode doesn't work in Firefox while using MV3 because it's trying to add To test against Firefox MV3, build for production and load the extension by hand. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
JVariance
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a bug in Firefox. I've reported it here already: https://bugzilla.mozilla.org/show_bug.cgi?id=1864284
For now, dev mode doesn't work in Firefox while using MV3 because it's trying to add
http://localhost
to the manifest's CSP, which is required for HMR.To test against Firefox MV3, build for production and load the extension by hand.