-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
32 lines (32 loc) · 965 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "wangfpp-theme",
"version": "0.1.0",
"description": "自定义Chrome主题",
"manifest_version": 2,
"browser_action": {
"default_icon": "img/64.png"
},
"background": {
"scripts": [ "js/background.js" ],
"css": [ "css/background.css" ]
},
"chrome_url_overrides": {
"newtab": "background.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [ "inject/index.js" ],
"match_about_blank": true,
"matches": [ "\u003Call_urls>" ],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"128": "img/128.png",
"32": "img/32.png",
"64": "img/64.png"
},
"permissions": [ "fontSettings", "<all_urls>", "tabs", "storage", "unlimitedStorage", "topSites", "contextMenus", "history", "fileBrowserHandler" ]
}