forked from Toxblh/youtube-speed-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
39 lines (39 loc) · 1.08 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
{
"name": "Youtube Playback Speed Control",
"version": "1.1.4",
"manifest_version": 2,
"description": "Control speed of the youtube playback using a keyboard. Press '+' to increase and '-' to decrease the playback speed.",
"homepage_url": "https://github.com/Toxblh/youtube-speed-control",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": ["tabs", "activeTab", "storage", "webRequest"],
"options_ui": {
"page": "src/option/options.html",
"open_in_tab": true
},
"background": {
"scripts": ["src/background.js"]
},
"page_action": {
"default_title": "Control speed of the youtube playback using a keyboard.",
"default_icon": {
"19": "icons/icon19.png"
}
},
"content_scripts": [
{
"all_frames": true,
"matches": ["http://www.youtube.com/*", "https://www.youtube.com/*"],
"css": ["css/inject.css"],
"js": ["src/inject/inject.js"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{63eebab4-6bd0-44a0-8d79-7fefb998ebc1}"
}
}
}