Youtube speed control
This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
Co to jest Youtube speed control?
Youtube speed control to rozszerzenie Chrome opracowane przez wwf4, a jego główną funkcją jest „This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube speed control
Pobierz pliki rozszerzeń Youtube speed control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
ctrl + > - to speed up video ctrl + < - to slow down video ctrl + ? - to return x1 speed;
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gdnknkknodmhgpompjfmhcodhcnamldo |
Oficjalny URL | https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo |
Opis | This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ? |
Rozmiar pliku | 70.77 KB |
Liczba instalacji | 623 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2017-11-10 |
Data Publikacji | 2017-11-10 |
Ocena | 4.75/5 Łącznie 4 Oceny |
Deweloper | wwf4 |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube speed control", "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "css": [ "styles.css" ], "all_frames": true } ] } |