-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmanifest.json
29 lines (29 loc) · 905 Bytes
/
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
{
"background": {
"scripts": [ "background.js" ]
},
"content_scripts": [ {
"js": [ "sniff_common.js", "doc_start.js" ],
"matches": [ "http://*/*", "https://*/*" ],
"run_at": "document_start"
}, {
"js": [ "sniff_common.js", "feed_finder.js" ],
"matches": [ "http://*/*", "https://*/*" ]
} ],
"default_locale": "en",
"description": "__MSG_rss_subscription_description__",
"icons": {
"128": "feed-icon-128x128.png"
},
"manifest_version": 2,
"name": "__MSG_rss_subscription_name__",
"options_page": "options.html",
"page_action": {
"default_icon": "feed-icon-16x16.png",
"default_popup": "popup.html",
"default_title": "__MSG_rss_subscription_default_title__"
},
"permissions": [ "tabs", "http://*/*", "https://*/*" ],
"version": "2.2.5",
"web_accessible_resources": [ "iframe.js", "style.css" ]
}