-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
64 lines (63 loc) · 1.46 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
{
"description": "__MSG_extDescription__",
"manifest_version": 2,
"name": "__MSG_extName__",
"version": "0.0.24",
"homepage_url": "https://github.com/ettoolong/MaximizeVideo",
"icons": {
"16": "icon/icon.svg",
"32": "icon/icon.svg",
"48": "icon/icon.svg",
"64": "icon/icon.svg",
"96": "icon/icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "MaximizeVideo@ettoolong",
"strict_min_version": "66.0"
}
},
"developer": {
"name": "Ett Chung",
"url": "https://github.com/ettoolong/MaximizeVideo"
},
"background": {
"scripts": ["js/background.js"]
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*","file:///*"],
"js": ["js/content-script.js"],
"css": ["css/maximizeVideo.css"],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": ["https://www.youtube.com/*"],
"js": ["js/ytb.js"],
"css": ["css/ytb.css"],
"all_frames": false,
"run_at": "document_start"
}
],
"browser_action": {
"browser_style": true,
"default_title": "__MSG_extDescription__",
"default_icon": "icon/icon_b.svg"
},
"permissions": [
"http://*/*", "https://*/*", "file:///*",
"storage"
],
"default_locale": "en",
"options_ui": {
"page": "options.html",
"open_in_tab": false,
"browser_style": true
},
"commands": {
"maximizeVideo": {
"description": "__MSG_execute__"
}
}
}