-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.14 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
{
"name": "StaRNG",
"description": "Random bookmark selector",
"version": "1.0",
"background": {
"service_worker": "js/background.js"
},
"options_page": "static/html/options.html",
"action": {
"default_icon": {
"16": "static/images/icon-16.png",
"24": "static/images/icon-24.png",
"32": "static/images/icon-32.png",
"64": "static/images/icon-64.png"
},
"default_title": "StaRNG",
"default_popup": "static/html/popup.html"
},
"commands": {
"select-star": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Select and open random bookmark"
}
},
"permissions": [
"bookmarks",
"storage"
],
"icons": {
"16": "static/images/icon-16.png",
"24": "static/images/icon-24.png",
"32": "static/images/icon-32.png",
"64": "static/images/icon-64.png",
"128": "static/images/icon-128.png",
"256": "static/images/icon-256.png",
"512": "static/images/icon-512.png"
},
"manifest_version": 3
}