forked from 54ac/stream-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
61 lines (61 loc) · 1.17 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
{
"name": "The Stream Detector",
"description": "__MSG_extText__",
"manifest_version": 2,
"default_locale": "en",
"version": "2.9.0",
"permissions": [
"<all_urls>",
"clipboardWrite",
"notifications",
"storage",
"tabs",
"webRequest"
],
"background": {
"page": "public/background.html"
},
"icons": {
"16": "img/icon-dark-16.png",
"48": "img/icon-dark-48.png",
"96": "img/icon-dark-96.png"
},
"commands": {
"open-popup": {
"description": "__MSG_openPopup__"
}
},
"options_ui": {
"browser_style": true,
"chrome_style": true,
"open_in_tab": false,
"page": "public/options.html"
},
"browser_action": {
"browser_style": true,
"chrome_style": true,
"default_title": "The Stream Detector",
"default_popup": "public/popup.html",
"default_icon": {
"16": "img/icon-dark-16.png",
"48": "img/icon-dark-48.png"
},
"theme_icons": [
{
"dark": "img/icon-dark-96.png",
"light": "img/icon-light-96.png",
"size": 96
},
{
"dark": "img/icon-dark-48.png",
"light": "img/icon-light-48.png",
"size": 48
},
{
"dark": "img/icon-dark-16.png",
"light": "img/icon-light-16.png",
"size": 16
}
]
}
}