-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmanifest.json
More file actions
62 lines (62 loc) · 1.24 KB
/
Copy pathmanifest.json
File metadata and controls
62 lines (62 loc) · 1.24 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
{
"author": "James Tomasino",
"manifest_version": 3,
"name": "stutter",
"short_name": "stutter",
"description": "RSVP for browsers",
"homepage_url": "https://github.com/jamestomasino/stutter",
"offline_enabled": true,
"icons": {
"16": "icons/stutter16.png",
"48": "icons/stutter48.png",
"64": "icons/stutter64.png",
"96": "icons/stutter96.png",
"128": "icons/stutter128.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Alt+R",
"mac": "Alt+R",
"chromeos": "Alt+R",
"linux": "Alt+R"
}
}
},
"action": {
"default_title": "stutter"
},
"background": {
"service_worker": "dist-bg/index.js",
"scripts": [
"dist-bg/index.js"
]
},
"permissions": [
"contextMenus",
"activeTab",
"storage",
"scripting"
],
"web_accessible_resources": [
{
"resources": [
"fonts/*"
],
"matches": [
"<all_urls>"
]
}
],
"options_page": "dist-options/index.html",
"options_ui": {
"page": "dist-options/index.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "{8cc45662-d58a-4a06-bf7b-4fcdf1d54b8d}"
}
},
"version": "2.6.2"
}