-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
29 lines (29 loc) · 969 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": {
"persistent": false,
"scripts": [ "scripts/background.js" ]
},
"browser_action": {
"default_icon": {
"19": "images/icons/podcast/springboard/38.png",
"38": "images/icons/podcast/springboard/76.png"
},
"default_popup": "browser_action/popup.html",
"default_title": "Podcast Feeds"
},
"content_scripts": [ {
"js": [ "scripts/content.js" ],
"matches": [ "http://*/*", "https://*/*" ]
} ],
"description": "Quickly view any podcast feeds that are related to the current page.",
"icons": {
"16": "images/icons/podcast/springboard/32.png",
"48": "images/icons/podcast/springboard/96.png",
"128": "images/icons/podcast/springboard/256.png",
"512": "images/icons/podcast/springboard/512.png"
},
"manifest_version": 2,
"name": "Podcast Feeds",
"permissions": [ "tabs", "http://*/*", "https://*/*", "storage" ],
"version": "0.5.2"
}