Mercurial > addons > firefox-addons > feed-preview
comparison manifest.json.in @ 0:bc5cc170163c
Initial revision
author | Guido Berhoerster <guido+feed-preview@berhoerster.name> |
---|---|
date | Wed, 03 Oct 2018 23:40:57 +0200 |
parents | |
children | 5d7c13e998e9 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:bc5cc170163c |
---|---|
1 { | |
2 "manifest_version": 2, | |
3 "name": "__MSG_extensionName__", | |
4 "version": "@VERSION@", | |
5 "description": "__MSG_extensionDescription__", | |
6 "author": "Guido Berhoerster", | |
7 "homepage_url": "https://code.guido-berhoerster.org/addons/firefox-addons/feed-preview/", | |
8 "default_locale": "en", | |
9 "applications": { | |
10 "gecko": { | |
11 "id": "feed-preview@code.guido-berhoerster.org", | |
12 "strict_min_version": "60.0" | |
13 } | |
14 }, | |
15 "icons": { | |
16 "48": "icons/feed-preview-48.png", | |
17 "96": "icons/feed-preview-96.png" | |
18 }, | |
19 "permissions": [ | |
20 "tabs", | |
21 "http://*/*", | |
22 "https://*/*", | |
23 "webRequest", | |
24 "webRequestBlocking" | |
25 ], | |
26 "background": { | |
27 "scripts": [ "background.js" ] | |
28 }, | |
29 "content_scripts": [ | |
30 { | |
31 "matches": [ "http://*/*", "https://*/*", "file:///*" ], | |
32 "js": [ | |
33 "content_scripts/feed-probe.js", | |
34 "content_scripts/feed-preview.js" | |
35 ] | |
36 } | |
37 ], | |
38 "web_accessible_resources": [ | |
39 "web_resources/feed-preview.xhtml", | |
40 "web_resources/arrow.svg", | |
41 "web_resources/style/common.css", | |
42 "web_resources/style/entry-content.css", | |
43 "web_resources/style/feed-preview.css", | |
44 "web_resources/style/photon-colors.css" | |
45 ], | |
46 "page_action": { | |
47 "browser_style": true, | |
48 "default_icon": "icons/feed-preview.svg", | |
49 "default_title": "Feeds", | |
50 "default_popup": "popup/feed-selection.html" | |
51 } | |
52 } |