So the options page can be added in Firefox by replacing
"options_page": "options.html",
with
"options_ui": {"page": "options.html"},
in manifest.json, and while the options page does work, taking screenshots directly to clipboard does not.
I'm way out of my depth in js so if anyone could figure out why it's not working that's be really appreciated.
Firefox works better than Chrome for me and at this point, this extension is all that's missing.
I have just worked on the copy to clipboard feature for a similar web extension dedicated to Firefox. Just take a look at issue here and corresponding (not yet merged) PR for details. I had previously checked the source code here and had the same conclusion.
So the options page can be added in Firefox by replacing
"options_page": "options.html",
with"options_ui": {
"page": "options.html"
},
in manifest.json, and while the options page does work, taking screenshots directly to clipboard does not. I'm way out of my depth in js so if anyone could figure out why it's not working that's be really appreciated. Firefox works better than Chrome for me and at this point, this extension is all that's missing.