Mercurial > addons > firefox-addons > feed-preview
comparison manifest.json.in @ 10:ff5e5e3eba32
Implement feed subscription for web-based feed readers
Add options page for configuring web-based feed readers which allow for
subscribing to feeds via GET requests.
Track tabs containing feed previews and inject a content script which
retrieves the configured feed readers and keeps them in sync.
author | Guido Berhoerster <guido+feed-preview@berhoerster.name> |
---|---|
date | Fri, 07 Dec 2018 23:00:41 +0100 |
parents | c271192aac9d |
children | 38b20de704a0 |
comparison
equal
deleted
inserted
replaced
9:fcd65cf3f634 | 10:ff5e5e3eba32 |
---|---|
15 "icons": { | 15 "icons": { |
16 "48": "icons/feed-preview-48.png", | 16 "48": "icons/feed-preview-48.png", |
17 "96": "icons/feed-preview-96.png" | 17 "96": "icons/feed-preview-96.png" |
18 }, | 18 }, |
19 "permissions": [ | 19 "permissions": [ |
20 "storage", | |
20 "tabs", | 21 "tabs", |
21 "http://*/*", | 22 "http://*/*", |
22 "https://*/*", | 23 "https://*/*", |
23 "webRequest", | 24 "webRequest", |
24 "webRequestBlocking" | 25 "webRequestBlocking" |
40 "page_action": { | 41 "page_action": { |
41 "browser_style": true, | 42 "browser_style": true, |
42 "default_icon": "icons/feed-preview.svg", | 43 "default_icon": "icons/feed-preview.svg", |
43 "default_title": "Feeds", | 44 "default_title": "Feeds", |
44 "default_popup": "popup/feed-selection.html" | 45 "default_popup": "popup/feed-selection.html" |
46 }, | |
47 "options_ui": { | |
48 "page": "options/options.html", | |
49 "browser_style": true | |
45 } | 50 } |
46 } | 51 } |