ScrewMyCode.in: Pitch control for YouTube
Slow down and speed up videos directly on YouTube like you would on a turntable.
Cos'è ScrewMyCode.in: Pitch control for YouTube?
ScrewMyCode.in: Pitch control for YouTube è un'estensione di Chrome sviluppata da Bamdad, e la sua funzione principale è "Slow down and speed up videos directly on YouTube like you would on a turntable.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ScrewMyCode.in: Pitch control for YouTube
Scarica i file di estensione ScrewMyCode.in: Pitch control for YouTube 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
## 📖 Description Slow down and speed up videos directly on YouTube like you would on a turntable. ### ⚙️ Use either - Popup settings - Embedded controls ### 📣 Share to - Users of the extension with the dynamic YouTube URL - Other users through the dedicated website ScrewMyCode.in
Informazioni di Base sull'Estensione
Nome | ScrewMyCode.in: Pitch control for YouTube |
ID | lnoedjelpkmhegefhhjljmggjdicnbaa |
URL Ufficiale | https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa |
Descrizione | Slow down and speed up videos directly on YouTube like you would on a turntable. |
Dimensione del File | 177 KB |
Conteggio Installazioni | 377 |
Versione Corrente | 2.4.0 |
Ultimo Aggiornamento | 2022-08-06 |
Data di Pubblicazione | 2022-02-23 |
Valutazione | 4.33/5 Totale 6 Valutazioni |
Sviluppatore | Bamdad |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/bamdadsabbagh/screwmycode-in--extension |
URL della Pagina di Aiuto | https://github.com/bamdadsabbagh/screwmycode-in--extension/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.4.0", "name": "ScrewMyCode.in: Pitch control for YouTube", "short_name": "ScrewMyCode.in", "description": "Slow down and speed up videos directly on YouTube like you would on a turntable.", "icons": { "128": "assets\/icon-128.png" }, "action": { "default_icon": { "128": "assets\/icon-128.png" }, "default_title": "ScrewMyCode.in", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "scripts\/content.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [ "storage", "tabs" ] } |