-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
96 lines (96 loc) · 2.26 KB
/
manifest.json
File metadata and controls
96 lines (96 loc) · 2.26 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "2.1.7",
"description": "__MSG_extDescription__",
"default_locale": "en",
"minimum_chrome_version": "120",
"homepage_url": "https://github.com/SysAdminDoc/ScriptVault",
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": [
"storage",
"tabs",
"notifications",
"contextMenus",
"scripting",
"userScripts",
"webNavigation",
"unlimitedStorage",
"alarms",
"downloads",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"sidePanel",
"offscreen"
],
"optional_permissions": [
"clipboardWrite",
"clipboardRead",
"identity",
"cookies"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png"
},
"default_title": "__MSG_extName__",
"default_popup": "pages/popup.html"
},
"side_panel": {
"default_path": "pages/sidepanel.html"
},
"devtools_page": "pages/devtools.html",
"options_ui": {
"page": "pages/dashboard.html",
"open_in_tab": true
},
"sandbox": {
"pages": ["pages/editor-sandbox.html"]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';",
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-eval' 'unsafe-inline' blob:; object-src 'self';"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start",
"all_frames": true
}],
"web_accessible_resources": [{
"resources": ["pages/install.html"],
"matches": ["<all_urls>"]
}],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "__MSG_cmdOpenPopup__"
},
"open_dashboard": {
"suggested_key": {
"default": "Alt+Shift+D"
},
"description": "__MSG_cmdOpenDashboard__"
},
"toggle_scripts": {
"suggested_key": {
"default": "Alt+Shift+E"
},
"description": "__MSG_cmdToggleScripts__"
}
}
}