YouTube Turbo Button
Sets the video playback speed to a specified amount.
Cos'è YouTube Turbo Button?
YouTube Turbo Button è un'estensione di Chrome sviluppata da https://systemcluster.me, e la sua funzione principale è "Sets the video playback speed to a specified amount.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Turbo Button
Scarica i file di estensione YouTube Turbo Button 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
Adds a button that sets the playback speed of the current YouTube video to a configurable amount from 0.1x to 10x.
Informazioni di Base sull'Estensione
Nome | YouTube Turbo Button |
ID | bonbclphagmhlcpiahpimimkbmlamenc |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-turbo-button/bonbclphagmhlcpiahpimimkbmlamenc |
Descrizione | Sets the video playback speed to a specified amount. |
Dimensione del File | 31.05 KB |
Conteggio Installazioni | 2,234 |
Versione Corrente | 0.1.4 |
Ultimo Aggiornamento | 2019-09-30 |
Data di Pubblicazione | 2019-09-29 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://systemcluster.me |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Systemcluster/youtube-turbo-button |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Turbo Button", "short_name": "YT Turbo Button", "description": "Sets the video playback speed to a specified amount.", "version": "0.1.4", "author": "Christian Sdunek", "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "57.0" } }, "options_ui": { "page": "chrome\/content\/settings_inline.html", "chrome_style": true, "open_in_tab": false }, "icons": { "48": "chrome\/skin\/icon48.png", "64": "chrome\/skin\/icon64.png", "128": "chrome\/skin\/icon128.png", "256": "chrome\/skin\/icon256.png" }, "background": { "scripts": [ "lib\/background.js" ], "persistent": true }, "browser_action": { "default_icon": { "48": "chrome\/skin\/icon48.png", "64": "chrome\/skin\/icon64.png", "128": "chrome\/skin\/icon128.png", "256": "chrome\/skin\/icon256.png" } }, "permissions": [ "*:\/\/*.youtube.com\/", "activeTab", "storage", "contextMenus" ] } |