Khan Academy Playback Speed Controller
Controls the playback speed of your khan academy video
Cos'è Khan Academy Playback Speed Controller?
Khan Academy Playback Speed Controller è un'estensione di Chrome sviluppata da Dhruman Gupta, e la sua funzione principale è "Controls the playback speed of your khan academy video".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Khan Academy Playback Speed Controller
Scarica i file di estensione Khan Academy Playback Speed Controller 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 an extenstion that allows you to speed up your videos beyond 2x on khan academy. Made for power users :)
Informazioni di Base sull'Estensione
Nome | Khan Academy Playback Speed Controller |
ID | dndcpejlplhllhpagbmpdgchcmcdgnii |
URL Ufficiale | https://chromewebstore.google.com/detail/khan-academy-playback-spe/dndcpejlplhllhpagbmpdgchcmcdgnii |
Descrizione | Controls the playback speed of your khan academy video |
Dimensione del File | 8.19 KB |
Conteggio Installazioni | 216 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2022-04-15 |
Data di Pubblicazione | 2022-04-14 |
Valutazione | 4.33/5 Totale 3 Valutazioni |
Sviluppatore | Dhruman Gupta |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/DhrumanGupta/khan-academy-playback-speed |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Khan Academy Playback Speed Controller", "description": "Controls the playback speed of your khan academy video", "version": "1.0.0", "author": "Dhruman Gupta", "content_scripts": [ { "matches": [ "*:\/\/www.khanacademy.org\/*", "*:\/\/www.youtube-nocookie.com\/*" ], "all_frames": true, "js": [ "injectedKhanAcademy.js" ] } ], "action": { "default_title": "Khan Academy playback speed", "default_popup": "popup.html" }, "icons": { "128": "images\/logo_128.png" }, "permissions": [ "activeTab", "tabs", "storage" ] } |