-
Notifications
You must be signed in to change notification settings - Fork 26
/
manifest.json
59 lines (49 loc) · 1.18 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"manifest_version": 2,
"name": "Rajiko",
"version": "0.3.6.1",
"description": "__MSG_manifest_app_description__",
"icons": {
"48": "Circle-icons-radio-blue-48.png",
"128": "Circle-icons-radio.png"
},
"permissions": [
"activeTab",
"cookies",
"storage",
"webRequest",
"webRequestBlocking",
"downloads",
"unlimitedStorage",
"*://*.radiko.jp/*",
"*://*.smartstream.ne.jp/*",
"*://*.radiko-cf.com/*"
]
,
"default_locale": "ja"
,
"background": {
"scripts": ["constants.js", "background.js"]
},
"content_scripts":[{
"matches": ["*://*.radiko.jp/"],
"js": ["ui/common_start.js"],
"run_at":"document_start"
},{
"matches": ["*://*.radiko.jp/share/?*noreload=1*"],
"js": ["ui/share_redirect.js"],
"run_at":"document_idle"
}],
"web_accessible_resources": ["ui/inspect_start.js"],
"browser_action": {
"default_icon": "Circle-icons-radio-blue-48.png",
"default_popup": "popup.html",
"default_title": "__MSG_popup_title__"
},
"browser_specific_settings": {
"gecko": {
"id": "{3a8c3e6f-40c7-4eeb-9e42-8d7a803af62b}"
},
"gecko_android": {}
}
}