Video Playback Speed (2x-4x-16x)
Base Level Extension
Cos'è Video Playback Speed (2x-4x-16x)?
Video Playback Speed (2x-4x-16x) è un'estensione di Chrome sviluppata da Özkan Arslan, e la sua funzione principale è "Base Level Extension".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Video Playback Speed (2x-4x-16x)
Scarica i file di estensione Video Playback Speed (2x-4x-16x) 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
This is a simple playback speed control tool. You can set speed easily. It will take new control mechanism soon
Informazioni di Base sull'Estensione
Nome | Video Playback Speed (2x-4x-16x) |
ID | lakkbciakcddnjmpenppddehppgjmdno |
URL Ufficiale | https://chromewebstore.google.com/detail/video-playback-speed-2x-4/lakkbciakcddnjmpenppddehppgjmdno |
Descrizione | Base Level Extension |
Dimensione del File | 60.1 KB |
Conteggio Installazioni | 2,000 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-04-11 |
Data di Pubblicazione | 2021-04-11 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Özkan Arslan |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Playback Speed (2x-4x-16x)", "description": "Base Level Extension", "version": "1.0", "manifest_version": 2, "browser_action": { "default_popup": "popup.html", "default_icon": "multimedia.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens_hello.html" } } } |