-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (46 loc) · 1.29 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
{
"manifest_version": 2,
"name": "리모콘 for Pooq",
"version": "0.11",
"default_locale": "ko",
"description": "키보드로 Pooq를 편리하게 이용할 수 있습니다. (전체화면, 채널, 재생목록 보기 지원)",
"browser_action":
{
"default_popup": "popup.html",
"default_title": "리모콘 for Pooq"
},
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png" },
"content_scripts": [
{
"matches" : ["http://www.pooq.co.kr/player/*", "https://www.pooq.co.kr/player/*"],
"js": [ "js/jquery-1.11.2.js",
"js/contentscript.js"]
}
],
"background": {
"scripts": ["js/eventPage.js"],
"persistent": false
},
"commands": {
"goto_pooq_live": {
"suggested_key": {
"windows": "Alt+Shift+P",
"mac": "Alt+Shift+P",
"chromeos": "Alt+Shift+P",
"linux": "Alt+Shift+P"
},
"description": "Go to Pooq live"
}
},
"permissions": [
"tabs"
],
"web_accessible_resources": ["js/remopooq.js"],
"externally_connectable": {
"matches": ["http://www.pooq.co.kr/player/*", "https://www.pooq.co.kr/player/*"]
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self';"
}