-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
54 lines (54 loc) · 1.15 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
{
"name": "Streamers Connected",
"version": "3.0.0",
"description": "The official Streamers Connected Chrome extension, showing notifications when Streamers Connected goes live.",
"icons": {
"64": "icons/64.png",
"128": "icons/128.png"
},
"permissions": [
"storage",
"notifications",
"background",
"https://*.twitch.tv/",
"https://*.streamersconnected.tv/"
],
"options_page": "options/options.html",
"options_ui": {
"page": "options/options.html"
},
"background": {
"scripts": [
"external/jquery.min.js",
"background.js"
]
},
"content_scripts": [
{
"js": [
"/external/jquery.min.js",
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end",
"matches": [
"*://*.twitch.tv/*",
"*://*.twitch.tv/*"
]
}
],
"manifest_version": 2,
"browser_action": {
"default_icon": "icons/128.png",
"default_title": "Streamers Connected",
"default_popup": "popup/popup.html"
},
"content_security_policy": "script-src 'self' https://*.twitter.com https://*.twimg.com; object-src 'self'",
"web_accessible_resources": [
"64.png",
"icons/chat-badge.png",
"icons/chat-badge-square.png"
]
}