-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest-firefox.json
More file actions
89 lines (89 loc) · 1.93 KB
/
manifest-firefox.json
File metadata and controls
89 lines (89 loc) · 1.93 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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "2.1.7",
"description": "__MSG_extDescription__",
"default_locale": "en",
"homepage_url": "https://github.com/SysAdminDoc/ScriptVault",
"browser_specific_settings": {
"gecko": {
"id": "ScriptVault@sysadmindoc.dev",
"strict_min_version": "128.0"
}
},
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": [
"storage",
"tabs",
"notifications",
"menus",
"scripting",
"userScripts",
"webNavigation",
"unlimitedStorage",
"alarms",
"downloads",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess"
],
"optional_permissions": [
"clipboardWrite",
"clipboardRead",
"identity",
"cookies"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"scripts": ["background.js"],
"type": "module"
},
"action": {
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png"
},
"default_title": "__MSG_extName__",
"default_popup": "pages/popup.html"
},
"options_ui": {
"page": "pages/dashboard.html",
"open_in_tab": true
},
"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__"
}
}
}