-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (38 loc) · 993 Bytes
/
manifest.json
File metadata and controls
38 lines (38 loc) · 993 Bytes
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
{
"name": "RSS Discovery",
"developer": {
"name": "Martin Kadlec, DitherSky"
},
"content_scripts": [{
"matches": ["*://*/*"],
"run_at": "document_start",
"js": ["includes/rss_discovery.js"]
}],
"description": "RSS feeds discovery icon for Smart RSS extension.",
"manifest_version": 2,
"version": "2.1",
"background": {
"page": "index.html"
},
"web_accessible_resources": ["preview_frame/*", "preview_frame.html"],
"permissions": ["https://*/*", "http://*/*", "storage", "webRequest", "webRequestBlocking", "tabs", "<all_urls>"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'unsafe-eval';",
"page_action": {
"default_title": "RSS discovery",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html"
},
"icons": {
"48": "images/icon48.png",
"64": "images/icon64.png",
"96": "images/icon96.png",
"128": "images/icon128.png"
},
"applications": {
"gecko": {
"id": "rss-discovery@mozilla.firefox"
}
}
}