ScrewMyCode.in: Pitch control for YouTube
Slow down and speed up videos directly on YouTube like you would on a turntable.
Hvad er ScrewMyCode.in: Pitch control for YouTube?
ScrewMyCode.in: Pitch control for YouTube er en Chrome-udvidelse udviklet af Bamdad, og dens hovedfunktion er "Slow down and speed up videos directly on YouTube like you would on a turntable.".
Udvidelsesskærmbilleder
Download ScrewMyCode.in: Pitch control for YouTube-udvidelses-CRX-fil
Download ScrewMyCode.in: Pitch control for YouTube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
## 📖 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
Grundlæggende oplysninger om udvidelsen
Navn | ScrewMyCode.in: Pitch control for YouTube |
ID | lnoedjelpkmhegefhhjljmggjdicnbaa |
Officiel URL | https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa |
Beskrivelse | Slow down and speed up videos directly on YouTube like you would on a turntable. |
Filstørrelse | 177 KB |
Antal Installationer | 377 |
Nuværende Version | 2.4.0 |
Senest Opdateret | 2022-08-06 |
Udgivelsesdato | 2022-02-23 |
Bedømmelse | 4.33/5 Samlet 6 Bedømmelser |
Udvikler | Bamdad |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/bamdadsabbagh/screwmycode-in--extension |
Hjælpeside-URL | https://github.com/bamdadsabbagh/screwmycode-in--extension/issues |
URL til Fortrolighedspolitik Side | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
Understøttede Sprog | 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" ] } |