1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-25 08:48:06 +08:00
volcanos/manifest.json
2020-06-04 07:04:48 +08:00

32 lines
777 B
JSON

{
"manifest_version": 2,
"name": "volcanos",
"version": "0.0.1",
"background": {"page": "/plugin/chrome/chrome.html"},
"browser_action": {
"default_icon": "/favicon.ico",
"default_popup": "/plugin/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",
"/plugin/chrome/contexts.js"]
}
],
"permissions": [
"tabs",
"history",
"cookies",
"bookmarks",
"notifications",
"*://localhost/*",
"*://localhost:9020/*"
]
}