mirror of
https://shylinux.com/x/volcanos
synced 2025-04-25 08:48:06 +08:00
38 lines
900 B
JSON
38 lines
900 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "volcanos",
|
|
"version": "0.0.1",
|
|
"icons": {
|
|
"16": "favicon.png",
|
|
"48": "favicon.png",
|
|
"128": "favicon.png"
|
|
},
|
|
"background": {"page": "/publish/chrome/chrome.html"},
|
|
"browser_action": {
|
|
"default_icon": "/favicon.png",
|
|
"default_popup": "/publish/chrome/popup.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["/proto.js",
|
|
"/lib/base.js",
|
|
"/lib/core.js",
|
|
"/lib/misc.js",
|
|
"/lib/page.js",
|
|
"/lib/user.js",
|
|
"/publish/chrome/contexts.js"
|
|
]
|
|
}
|
|
],
|
|
"permissions": [
|
|
"tabs",
|
|
"history",
|
|
"cookies",
|
|
"bookmarks",
|
|
"notifications",
|
|
"contextMenus",
|
|
"http://localhost:9020/*"
|
|
]
|
|
}
|