How to access manifest.json file of Firefox extension?

I am doing a short research on the Chrome and Firefox extensions. I can access the manifest.json file of the Chrome extension installed in the Chrome browser with this URL chrome-extension://<extension_id>/manifest.json. Is there an equivalent Firefox url to see manifest.json Firefox extensions? NB: I already tried the prefix moz-extension://. But that does not work.

0
source share
1 answer

The URLs used for files inside WebExtensions add-ins are in the format:

moz-extension://<extension UUID>/<pathToFileInExtension>

, URL- chrome.extension.getURL(). UUID .

, URL Firefox, UUID . WebExtensions UUID about:config extensions.webextensions.uuids. - JSON , WebExtension, - UUID WebExtensions.

, ( [extensionID].xpi), , , [profileDirectory]/. ( .zip- ) . , , URL- URL.

+1

Source: https://habr.com/ru/post/1671326/


All Articles