-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
55 lines (47 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"manifest_version": 2,
"name": "The Old Reader Bookmark",
"version": "0.4",
"description": "__MSG_addonDescription__",
"homepage_url": "https://github.com/laedit/the-old-reader-bookmark/",
"default_locale": "en",
"icons": {
"16": "icons/oldreadericon-16.png",
"32": "icons/oldreadericon-32.png",
"48": "icons/oldreadericon-48.png",
"64": "icons/oldreadericon-64.png"
},
"applications": {
"gecko": {
"id": "jid1-sVBiH5VBQOq2TA@jetpack",
"strict_min_version": "53.0a2"
}
},
"permissions": [
"activeTab",
"<all_urls>",
"storage"
],
"browser_action": {
"default_icon": {
"16": "icons/oldreadericon-16.png",
"32": "icons/oldreadericon-32.png",
"48": "icons/oldreadericon-48.png",
"64": "icons/oldreadericon-64.png"
},
"default_title": "The Old Reader - Bookmark"
},
"background": {
"scripts": ["background-script.js"]
},
"content_scripts": [
{
"matches": ["*://*.theoldreader.com/*"],
"js": ["settings.js", "content_scripts/bookmarkBadge.js"]
}
],
"options_ui": {
"page": "options.html",
"browser_style": true
}
}