-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
44 lines (41 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
{
"manifest_version": 2,
"name": "Video Summarizer",
"version": "1.4",
"author": "Petr Šťastný",
"developer": {
"name": "Petr Šťastný",
"url": "https://soptik.tech"
},
"homepage_url": "https://github.com/soptikha2/video-summarizer",
"description": "Changes playback speed for videos depending on loundness of the video. Speed up long lectures at different rates, depending on whether the teacher is saying something or is just silently writing something on whiteboard.",
"icons": {
"16": "icon.svg",
"32": "icon.svg",
"48": "icon.svg",
"96": "icon.svg"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/summarize.js"]
}
],
"browser_action": {
"browser_style": true,
"default_icon" : {
"16": "icon.svg",
"32": "icon.svg",
"48": "icon.svg",
"96": "icon.svg"
},
"default_title": "Video Summarizer",
"default_popup": "popup/menu.html"
},
"permissions": [
"<all_urls>",
"webRequest",
"storage",
"tabs"
]
}