-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
65 lines (65 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
64
65
{
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"action": {
"default_icon": "icons/logo-orange48x48.png",
"default_popup": "popup/popup.html",
"default_title": "Read Later"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content/content.js"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"web_accessible_resources": [
{
"resources": [
"content/pagePosition.js"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"chrome-read-later.willbc.com": {
"description": "Save to reading list",
"suggested_key": {
"default": "Alt+Shift+S"
}
},
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+Z"
}
}
},
"description": "A temporary bookmark focuses on reading later, rather than closing and removing, with several Vim keybindings!",
"icons": {
"128": "icons/logo-orange128x128.png",
"16": "icons/logo-orange16x16.png",
"32": "icons/logo-orange32x32.png",
"48": "icons/logo-orange48x48.png"
},
"manifest_version": 3,
"name": "Read Later",
"permissions": [
"tabs",
"storage",
"contextMenus",
"favicon"
],
"version": "9.0.5"
}