forked from go-shiori/shiori-web-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
72 lines (66 loc) · 1.86 KB
/
Copy pathmanifest.json
File metadata and controls
72 lines (66 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
{
"manifest_version": 2,
"version": "0.8.4",
"name": "Shiori",
"author": "Radhi Fadlillah",
"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": [
"<all_urls>",
"tabs",
"storage",
"bookmarks"
],
"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",
"browser_style": true,
"chrome_style": true
},
"browser_action": {
"browser_style": true,
"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"
},
"theme_icons": [{
"dark": "icons/action-dark-16.png",
"light": "icons/action-light-16.png",
"size": 16
}, {
"dark": "icons/action-dark-32.png",
"light": "icons/action-light-32.png",
"size": 32
}, {
"dark": "icons/action-dark-64.png",
"light": "icons/action-light-64.png",
"size": 64
}]
},
"browser_specific_settings": {
"gecko": {
"id": "{c6e8bd66-ebb4-4b63-bd29-5ef59c795901}",
"update_url": "https://raw.githubusercontent.com/go-shiori/shiori-web-ext/master/updates.json"
}
}
}