-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (58 loc) · 986 Bytes
/
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
{
"description": "__MSG_extText__",
"manifest_version": 2,
"name": "yassd",
"default_locale": "en",
"version": "0.0.2",
"permissions": [
"storage",
"menus",
"tabs",
"clipboardWrite",
"downloads",
"webRequest",
"*://*/*.m3u8",
"*://*/*.m3u8?*",
"*://*/*.mpd",
"*://*/*.mpd?*",
"*://*/*.f4m",
"*://*/*.f4m?*",
"*://*/*.ism",
"*://*/*.ism/*",
"*://*/*.vtt",
"*://*/*.vtt/*"
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "data/icon-16.png",
"48": "data/icon-48.png",
"96": "data/icon-96.png"
},
"options_ui": {
"page": "options.html"
},
"browser_action": {
"browser_style": true,
"theme_icons": [
{
"dark": "data/icon-96.png",
"light": "data/icon-96.png",
"size": 96
},
{
"dark": "data/icon-48.png",
"light": "data/icon-48.png",
"size": 48
},
{
"dark": "data/icon-16.png",
"light": "data/icon-16.png",
"size": 16
}
]
}
}