-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
67 lines (67 loc) · 1.33 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
60
61
62
63
64
65
66
67
{
"manifest_version": 2,
"name": "veefeed",
"version": "0.10.3",
"description": "Keep track of your YouTube and Twitch subscriptions",
"applications": {
"gecko": {
"id": "temp@veefeed.com"
}
},
"icons": {
"128": "img/icon-128.png"
},
"permissions": [
"https://www.twitch.tv/",
"https://api.twitch.tv/",
"https://www.youtube.com/",
"https://haloruns.com/",
"https://www.speedrun.com/",
"https://t.co/",
"contextMenus",
"cookies",
"notifications",
"storage"
],
"author": "fent (https://github.com/fent)",
"background": {
"page": "background/background.html"
},
"content_scripts": [
{
"matches": [
"https://*.youtube.com/watch?*v=*"
],
"js": [
"util/time.js",
"util/hyperscript.js",
"content/shared.js",
"content/youtube.js"
],
"css": [
"content/style.css"
]
},
{
"matches": [
"https://www.twitch.tv/videos/*"
],
"js": [
"util/time.js",
"util/hyperscript.js",
"content/shared.js",
"content/twitch.js"
],
"css": [
"content/style.css"
]
}
],
"browser_action": {
"default_popup": "popup/popup.html"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
}
}