admin管理员组文章数量:1345465
I am making a short research about Chrome and Firefox extensions. I can access the manifest.json file of a Chrome extension installed on my Chrome browser with this URL chrome-extension://<extension_id>/manifest.json
. Is there a Firefox equivalent URL to see the manifest.json of a Firefox extension?
N.B: I have already tried moz-extension://
prefix. But it does not work.
I am making a short research about Chrome and Firefox extensions. I can access the manifest.json file of a Chrome extension installed on my Chrome browser with this URL chrome-extension://<extension_id>/manifest.json
. Is there a Firefox equivalent URL to see the manifest.json of a Firefox extension?
N.B: I have already tried moz-extension://
prefix. But it does not work.
-
@wOxxOm Thanks for your quick remark. I have already tried. It does not seem to be working with
moz-extension://
prefix – sajid Commented Jan 26, 2017 at 15:24
2 Answers
Reset to default 8There 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://
).
The URLs used for files inside WebExtensions add-ons are in the format:
moz-extension://<extension UUID>/<pathToFileInExtension>
If you are in code within the extension, you can obtain the URL to any file in your extension with chrome.extension.getURL()
. This will effectively give you the UUID for your extension.
If you are wanting to access a file through typing it into the URL bar of the Firefox Browser UI, then you will need to obtain the UUID for the extension you desire. For WebExtensions, the mapping from extension ID to UUID is available from about:config
in extensions.webextensions.uuids
. The value for that key is a JSON formatted Object with keys that are the WebExtension IDs and the value for each key is that WebExtensions' UUID.
If you are wanting to generally access files within a particular extension, you may be better off finding the extensions packed archive (usually [extensionID].xpi) which will, normally, be located in your [profileDirectory]/extensions. You will then need to unpack the archive (a normal .zip archive with the file extension changed) to access the files. Doing this may be easier than trying to crawl through the files by entering their URLs one-by-one in the URL bar.
本文标签: javascriptHow to access the manifestjson file of a Firefox extensionStack Overflow
版权声明:本文标题:javascript - How to access the manifest.json file of a Firefox extension? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743806603a2542291.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论