I am new to FF extensions development. I work on Windows OS. I am using web extensions. I started my first extension. I created a directory in My Documents
which contains my extension files. The files are based on the example in: Your First WebExtension which are: manifest.json
, icons/myicon.png
, myextension.js
. Like the example, all what the extension does is a border aroud mozilla page. This is the js code: document.body.style.border = "5px solid red";
When I come to installing the extension in my browser, I navigated to:about:debugging
then I clicked in the Load Temprary Addon
button and I selected the the .js
file. I get this error: There was an error during installation: Extension is invalid
. Can you point what the problem is?