Shortcuts for video acceleration
Allows to natively specify shortcuts for speed up or slow down active video
Co to jest Shortcuts for video acceleration?
Shortcuts for video acceleration to rozszerzenie Chrome opracowane przez ABrill, a jego główną funkcją jest „Allows to natively specify shortcuts for speed up or slow down active video”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Shortcuts for video acceleration
Pobierz pliki rozszerzeń Shortcuts for video acceleration 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
The extension allows to natively specify shortcuts for video acceleration in Chrome: - Speed up/slow down - Play video on max possible playback speed - Reset speed to usual 1. Open source 2. Uses native shortcuts manager for extensions in Chrome 3. Almost no-code extension (less than 100 lines) 4. Pure and clean
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | chaknloimoaeonfpfkdoielpnhdfleaf |
Oficjalny URL | https://chromewebstore.google.com/detail/shortcuts-for-video-accel/chaknloimoaeonfpfkdoielpnhdfleaf |
Opis | Allows to natively specify shortcuts for speed up or slow down active video |
Rozmiar pliku | 41.69 KB |
Liczba instalacji | 83 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-04-29 |
Data Publikacji | 2020-04-26 |
Deweloper | ABrill |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/andrey-brill/a-chrome-extensions/tree/master/video-accelerator |
Adres URL Strony Pomocy | https://github.com/andrey-brill/a-chrome-extensions/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shortcuts for video acceleration", "description": "Allows to natively specify shortcuts for speed up or slow down active video", "version": "1.0", "manifest_version": 2, "icons": { "16": "images\/video-accelerator-16px.png", "32": "images\/video-accelerator-32px.png", "64": "images\/video-accelerator-64px.png", "128": "images\/video-accelerator-128px.png", "256": "images\/video-accelerator-256px.png", "512": "images\/video-accelerator-512px.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "all_frames": true } ], "browser_action": { "default_title": "Open hotkeys bindings" }, "permissions": [ "tabs" ], "commands": { "video-speed-up": { "description": "Speed up active video", "suggested_key": { "default": "Alt+Up" } }, "video-slow-down": { "description": "Slow down active video", "suggested_key": { "default": "Alt+Down" } }, "video-reset-speed": { "description": "Reset playback speed", "suggested_key": { "default": "Alt+Shift+Down" } }, "video-max-speed": { "description": "Maximize playback speed", "suggested_key": { "default": "Alt+Shift+Up" } } } } |