-
Notifications
You must be signed in to change notification settings - Fork 679
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·51 lines (51 loc) · 1.47 KB
/
manifest.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.47 KB
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
{
"name": "Video Speed Controller",
"short_name": "videospeed",
"version": "0.0.0",
"manifest_version": 3,
"minimum_chrome_version": "111",
"description": "Speed up, slow down, advance and rewind HTML5 audio/video with shortcuts",
"homepage_url": "https://github.com/igrigorik/videospeed",
"icons": {
"16": "assets/icons/icon16.png",
"48": "assets/icons/icon48.png",
"128": "assets/icons/icon128.png"
},
"permissions": ["storage"],
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "ui/options/options.html",
"open_in_tab": true
},
"action": {
"default_icon": {
"19": "assets/icons/icon19.png",
"38": "assets/icons/icon38.png",
"48": "assets/icons/icon48.png"
},
"default_popup": "ui/popup/popup.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*", "file:///*"],
"all_frames": true,
"match_about_blank": true,
"exclude_matches": ["https://hangouts.google.com/*", "https://meet.google.com/*"],
"js": ["content-bridge.js"],
"run_at": "document_start",
"world": "ISOLATED"
},
{
"matches": ["http://*/*", "https://*/*", "file:///*"],
"all_frames": true,
"match_about_blank": true,
"exclude_matches": ["https://hangouts.google.com/*", "https://meet.google.com/*"],
"css": ["styles/inject.css"],
"js": ["inject.js"],
"run_at": "document_idle",
"world": "MAIN"
}
]
}