StarCitizenBoxBrowserEx/StarCitizenBoxBrowserEx_Firefox/manifest.json

45 lines
917 B
JSON
Raw Normal View History

2023-10-10 14:25:32 +08:00
{
"manifest_version": 2,
"name": "星际公民盒子浏览器拓展",
2023-12-09 13:20:56 +08:00
"version": "0.0.7",
2023-10-10 14:25:32 +08:00
"description": "为星际公民网站及工具站提供汉化",
"author": "xkeyC",
"icons": {
2023-10-10 14:52:29 +08:00
"192": "icon.png"
2023-10-10 14:25:32 +08:00
},
"permissions": [
"storage",
2023-12-09 13:04:15 +08:00
"https://git.sctoolbox.sccsgo.com/*"
2023-10-10 14:25:32 +08:00
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://robertsspaceindustries.com/*",
"https://*.robertsspaceindustries.com/*",
"https://www.erkul.games/*",
"https://uexcorp.space/*"
2023-10-10 14:25:32 +08:00
],
"js": [
"core.js",
"thirdparty/timeago.full.min.js"
]
},
{
"matches": [
"https://www.erkul.games/*"
2023-10-10 14:25:32 +08:00
],
"js": [
"thirdparty/jquery.min.js"
]
}
]
}