Search results
May 21, 2019 · Currently, I'm developing an Firefox extension app. It will open a html file in a new popup window. When the poup window opened, it shows the title as format: "moz-extensions://", does anyone know ...
Jan 9, 2020 · Link moz-extension as a href. Asked 4 years, 10 months ago. Modified 4 years, 10 months ago. Viewed 537 times.
Jan 13, 2017 · User knows the extension tab exists somewhere and doesn't want to keep opening new bookmarks, and so wants to use the add-on's browser action context menu to find the extension page's tab. Likewise, I don't want my add-on to open a duplicate tab.
Dec 12, 2009 · 1. The Mozilla and WebKit specific properties will not validate. What you can do is separate your "enriched" css into a separate style sheet. Just like you separate your ie hack styles out of your main style sheet. This way your base style sheets will validate. answered Dec 11, 2009 at 17:51.
May 24, 2019 · self.webdriver.install_addon(extensionPath,temporary=True); return self.webdriver; firefoxUUID is a string version of random UUID you generate and you have to replace support@ipburger.com with your addon ID, which you can set inside manifest.json file. answered Oct 15, 2020 at 14:08.
Jun 6, 2018 · This extension, however, stores such data in another fashion. I'm sure of that being true because, after manually moving out the extension file from. C:\Users[ME]\AppData\Roaming\Mozilla\Firefox\Profiles[PROFILE.NAME]\extensions. and after reinstalling the extension at addons.mozila, the aforementioned inserted-data persisted.
@Xan, While you may be able to technically relax the policy, if you intend to have a WebExtension hosted by AMO (the "normal" distribution method for Firefox Extensions), any JavaScript you use should be included with the extension package. Any such common libraries should exactly match copies available for download.
Jan 26, 2017 · 8. There is an easier way. Go to about:debugging, and press button This Firefox, and look up for your extension in Extensions tab, then find this text below the extension's name – Manifest URL, then open the link that will be around it (It should start with moz-extension://). edited Mar 6 at 6:13. answered May 5, 2022 at 10:30. NNL993. 472 8 12.
Jan 2, 2018 · In the Main Process section, scroll down to Other Measurements. There you will find the installed (active) extensions with their names and their ids displayed as baseURL=moz-extension:// [random-ids]. This method works for both Firefox and Firefox for Android. Note that only enabled extensions are shown.
Jan 5, 2018 · To do this, your manifest.json needs to load your JavaScript as follows: the file establishing the exporting/importing functions first (named modules-start.js in the example below), the exporting files next, and. the importing files last. Of course, you might have a file that both imports and exports.