-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
49 lines (41 loc) · 1.04 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
{
"manifest_version": 2,
"name": "TwitchTime",
"version": "1.10",
"browser_specific_settings": {
"gecko": {
"id": "twitchtime@notactuallytwitch.com",
"strict_min_version": "55.0"
}
},
"description": "Keeps track of how long you have watched different Twitch channels.",
"homepage_url": "https://github.com/swpease/TwitchTime",
"icons": {
"48": "icons/twitch-time-48.png",
"96": "icons/twitch-time-48@2x.png"
},
"content_scripts": [
{
"matches": ["*://*.twitch.tv/*"],
"js": ["content_scripts/content_script.js"],
"css": ["content_scripts/content_script.css"]
}
],
"browser_action": {
"default_icon": {
"16": "icons/twitch-time-16-light.png",
"32": "icons/twitch-time-32-light.png",
"64": "icons/twitch-time-64-light.png"
},
"default_title": "Twitch Time",
"default_popup": "popup/popup.html",
"browser_style": true
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"permissions": [
"storage"
]
}