ShopAI-Extension/manifest.json
2024-05-01 16:53:44 +08:00

42 lines
942 B
JSON

{
"manifest_version": 3,
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "0",
"permissions": ["tabs", "storage", "unlimitedStorage", "contextMenus"],
"background": {
"scripts": ["scripts/background/shopAI.js"]
},
"action": {},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["scripts/external/background.js"]
}
],
"web_accessible_resources": [
{
"matches": ["http://*/*", "https://*/*"],
"resources": ["media/config.symbols.json", "scripts/*.js", "scripts/external/*.js", "scripts/mapping/*.js", "scripts/utils/*.js", "scripts/AI/*.js", "config/*.json"]
}
],
"icons": {
"1024": "media/icons/logo.png",
"512": "media/icons/logo_tiny.png"
},
"options_ui": {
"page": "pages/settings.htm"
},
"browser_specific_settings": {
"gecko": {
"id": "{db2d6746-5711-4c83-90c7-107057f37732}"
}
},
"default_locale": "en"
}