1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-25 16:58:06 +08:00
volcanos/manifest.json
2020-06-11 14:54:55 +08:00

32 lines
756 B
JSON

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