-
Notifications
You must be signed in to change notification settings - Fork 99
/
manifest.json
54 lines (54 loc) · 1.4 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
{
"name": "Scrroll In",
"short_name": "scrroll-in",
"version": "3.2",
"description": "An extension to save scroll position of a webpage",
"permissions": [
"tabs",
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"http://*/",
"https://*/"
],
"options_page": "options/index.html",
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup/index.html",
"default_icon": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png",
"256": "images/icon-256.png"
}
},
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"128": "images/icon-128.png",
"256": "images/icon-256.png"
},
"commands": {
"save-scroll": {
"suggested_key": {
"default": "Shift+Ctrl+S",
"mac": "Shift+Command+S"
},
"description": "Save scrroll"
},
"fetch-scroll": {
"suggested_key": {
"default": "Shift+Ctrl+G",
"mac": "Shift+Command+G"
},
"description": "Fetch Latest scrroll"
}
},
"manifest_version": 3
}