mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-09 17:19:59 +00:00
43 lines
860 B
JSON
Executable File
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"
|
|
]
|
|
} |