-
Notifications
You must be signed in to change notification settings - Fork 48
/
manifest.json
70 lines (70 loc) · 1.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"version": "3.1.0",
"name": "N-Tab",
"manifest_version": 3,
"description": "__MSG_pluginDesc__",
"background": {
"service_worker": "js/background.js"
},
"icons": {
"48": "images/48.png",
"96": "images/96.png",
"128": "images/128.png"
},
"permissions": [
"tabs",
"contextMenus",
"storage",
"unlimitedStorage",
"notifications",
"idle",
"alarms",
"commands"
],
"host_permissions": [
"<all_urls>"
],
"content_security_policy": {
"sandbox": "sandbox allow-scripts; script-src 'self' https://api.github.com https://gitee.com https://hm.baidu.com 'unsafe-eval' https://hmcdn.baidu.com; object-src 'self'"
},
"action": {
"default_icon": "images/96.png",
"default_title": "N-Tab",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/jquery-3.0.0.min.js",
"js/contentScript.js"
],
"css": [
"css/contentScript.css"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
],
"homepage_url": "https://github.com/scoful/cloudSkyMonster",
"default_locale": "zh_CN",
"commands": {
"toggle-feature-save-all": {
"suggested_key": {
"default": "Ctrl+Q",
"mac": "Command+Q"
},
"description": "__MSG_toggleFeatureSaveAllTabs__"
},
"toggle-feature-save-current": {
"suggested_key": {
"default": "Alt+Q",
"mac": "Alt+Q"
},
"description": "__MSG_toggleFeatureSaveCurrentTabs__"
}
}
}