Files
fx_cast/ext/src/manifest.json
2019-02-12 09:06:57 +00:00

49 lines
1.1 KiB
JSON
Executable File

{
"name": "__MSG_extensionName__"
, "description": "__MSG_extensionDescription__"
, "version": "EXTENSION_VERSION"
, "browser_specific_settings": {
"gecko": {
"id": "EXTENSION_ID"
, "strict_min_version": "64.0"
}
}
, "browser_action": {
"default_popup": "popup/index.html"
}
, "background": {
"scripts": [ "main.js" ]
}
, "content_scripts": [
{
"matches": [ "https://www.youtube.com/*" ]
, "js": [ "compat/youtube.js" ]
, "run_at": "document_start"
}
]
, "content_security_policy": "CONTENT_SECURITY_POLICY"
, "default_locale": "en"
, "manifest_version": 2
, "options_ui": {
"page": "options/index.html"
}
, "permissions": [
"downloads"
, "downloads.open"
, "menus"
, "nativeMessaging"
, "storage"
, "webNavigation"
, "webRequest"
, "webRequestBlocking"
, "<all_urls>"
]
, "web_accessible_resources": [
"shim/bundle.js"
, "vendor/webcomponents-lite.min.js"
]
}