Files
fx_cast/extension/src/manifest.json
2026-03-08 12:40:56 +00:00

64 lines
1.4 KiB
JSON
Executable File

{
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "0.4.1",
"developer": {
"name": "Matt Hensman",
"url": "https://matt.tf/"
},
"browser_specific_settings": {
"gecko": {
"id": "fx_cast@matt.tf",
"strict_min_version": "109.0",
"update_url": "https://hensm.github.io/fx_cast/updates.json"
}
},
"action": {
"theme_icons": [
{
"light": "icons/cast-default-light.svg",
"dark": "icons/cast-default-dark.svg",
"size": 32
}
]
},
"background": {
"scripts": ["background/background.js"]
},
"default_locale": "en",
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
},
"manifest_version": 3,
"options_ui": {
"page": "ui/options/index.html"
},
"permissions": [
"history",
"menus",
"menus.overrideContext",
"nativeMessaging",
"notifications",
"scripting",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"host_permissions": ["<all_urls>"],
"web_accessible_resources": [
{
"resources": ["cast/content.js"],
"matches": ["<all_urls>"]
}
]
}