mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/StarCitizenBoxBrowserEx.git
synced 2025-06-04 18:43:48 +08:00
59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/chrome-manifest.json",
|
|
"manifest_version": 3,
|
|
"name": "星际公民盒子浏览器拓展",
|
|
"version": "0.1.0",
|
|
"description": "为星际公民网站及工具站提供汉化",
|
|
"author": "xkeyC",
|
|
"icons": {
|
|
"16": "icon.png",
|
|
"48": "icon.png",
|
|
"192": "icon.png"
|
|
},
|
|
"host_permissions": [
|
|
"https://git.scbox.xkeyc.cn/*"
|
|
],
|
|
"permissions": [
|
|
"storage",
|
|
"contextMenus"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html"
|
|
},
|
|
"background": {
|
|
"chromium:service_worker": "background.ts",
|
|
"firefox:scripts": [
|
|
"background.ts"
|
|
]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"*://*/*"
|
|
],
|
|
"exclude_matches": [
|
|
"https://robertsspaceindustries.com/spectrum/*"
|
|
],
|
|
"js": [
|
|
"core.ts",
|
|
"thirdparty/timeago.full.min.js"
|
|
],
|
|
"run_at": "document_end"
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://www.erkul.games/*"
|
|
],
|
|
"js": [
|
|
"thirdparty/jquery.min.js"
|
|
],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "{cebbbbe9-d4d2-4409-a244-2d6145fc0de8}",
|
|
"strict_min_version": "58.0"
|
|
}
|
|
}
|
|
} |