Shortcuts for video acceleration
Allows to natively specify shortcuts for speed up or slow down active video
Cos'è Shortcuts for video acceleration?
Shortcuts for video acceleration è un'estensione di Chrome sviluppata da ABrill, e la sua funzione principale è "Allows to natively specify shortcuts for speed up or slow down active video".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Shortcuts for video acceleration
Scarica i file di estensione Shortcuts for video acceleration in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | chaknloimoaeonfpfkdoielpnhdfleaf |
URL Ufficiale | https://chromewebstore.google.com/detail/shortcuts-for-video-accel/chaknloimoaeonfpfkdoielpnhdfleaf |
Descrizione | Allows to natively specify shortcuts for speed up or slow down active video |
Dimensione del File | 41.69 KB |
Conteggio Installazioni | 83 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-04-29 |
Data di Pubblicazione | 2020-04-26 |
Sviluppatore | ABrill |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/andrey-brill/a-chrome-extensions/tree/master/video-accelerator |
URL della Pagina di Aiuto | https://github.com/andrey-brill/a-chrome-extensions/issues |
Lingue Supportate | 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" } } } } |