mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-09 17:19:59 +00:00
53 lines
1.1 KiB
JSON
Executable File
53 lines
1.1 KiB
JSON
Executable File
{
|
|
"name": "__MSG_extensionName__"
|
|
, "description": "__MSG_extensionDescription__"
|
|
, "version": "EXTENSION_VERSION"
|
|
, "developer": {
|
|
"name": "AUTHOR"
|
|
, "url": "AUTHOR_HOMEPAGE"
|
|
}
|
|
|
|
, "applications": {
|
|
"gecko": {
|
|
"id": "EXTENSION_ID"
|
|
, "strict_min_version": "64.0"
|
|
}
|
|
}
|
|
, "browser_action": {
|
|
"theme_icons": [
|
|
{
|
|
"light": "icons/cast-default-light.svg"
|
|
, "dark": "icons/cast-default-dark.svg"
|
|
, "size": 32
|
|
}
|
|
]
|
|
}
|
|
|
|
, "background": {
|
|
"scripts": [ "main.js" ]
|
|
}
|
|
|
|
, "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.js"
|
|
]
|
|
}
|