-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathmanifest.json
63 lines (63 loc) · 1.56 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
{
"manifest_version": 3,
"version": "1.7.0.2",
"name": "Shiori",
"author": "Go-Shiori Team",
"description": "Web extension for Shiori, a simple bookmark manager.",
"homepage_url": "https://github.com/go-shiori/shiori-web-ext",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"permissions": [
"tabs",
"storage",
"bookmarks",
"scripting",
"activeTab"
],
"host_permissions": ["<all_urls>"],
"background": {
"scripts": [
"js/browser-polyfill.js",
"js/background-script.js"
]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"css": ["css/dialog.css"],
"js": [
"js/browser-polyfill.js",
"js/content-script.js"
]
}],
"options_ui": {
"page": "view/options.html",
"open_in_tab": false
},
"action": {
"default_title": "Shiori",
"default_popup": "view/popup.html",
"default_icon": {
"16": "icons/action-default-16.png",
"32": "icons/action-default-32.png",
"64": "icons/action-default-64.png"
}
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+F"
},
"description": "Show bookmark popup"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{c6e8bd66-ebb4-4b63-bd29-5ef59c795903}"
}
},
"omnibox": {
"keyword": "@shiori"
}
}