Files
fx_cast/ext/src/manifest.json

43 lines
860 B
JSON
Executable File

{
"name": "__MSG_extension_name__"
, "description": "__MSG_extension_description__"
, "version": "EXTENSION_VERSION"
, "applications": {
"gecko": {
"id": "EXTENSION_ID"
, "strict_min_version": "57.0"
}
}
, "browser_action": {
"default_popup": "popup/index.html"
}
, "background": {
"scripts": [ "main.js" ]
}
, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
, "default_locale": "en"
, "manifest_version": 2
, "options_ui": {
"page": "options/index.html"
}
, "permissions": [
"menus"
, "nativeMessaging"
, "storage"
, "webNavigation"
, "webRequest"
, "webRequestBlocking"
, "<all_urls>"
]
, "web_accessible_resources": [
"shim/bundle.js"
, "dm.js"
]
}