-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmanifest.json
44 lines (43 loc) · 1.08 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
{
"manifest_version": 2,
"name": "Steward: 扩展/应用/标签/历史记录/alfred",
"short_name": "Steward",
"version": "2.4.7",
"description": "便捷管理扩展/应用/标签/历史记录等",
"default_locale": "zh_CN",
"chrome_url_overrides" : {
"newtab": "steward.html"
},
"background": {
"page": "bg.html"
},
"browser_action": {
"default_icon": "img/icon.png",
"default_title": "Steward",
"default_popup": "popup.html"
},
"icons": {
"16": "img/icon16.png"
},
"web_accessible_resources": [
"img/*",
"urlblock.html",
"login.html"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"options_page": "options.html",
"optional_permissions": [
"background", "clipboardRead", "clipboardWrite"
],
"permissions": [
"history",
"bookmarks",
"tabs",
"storage",
"downloads",
"contextMenus",
"management",
"notifications",
"<all_urls>"
]
}