ScrewMyCode.in: Pitch control for YouTube
Slow down and speed up videos directly on YouTube like you would on a turntable.
Was ist ScrewMyCode.in: Pitch control for YouTube?
ScrewMyCode.in: Pitch control for YouTube ist eine Chrome-Erweiterung, die von Bamdad entwickelt wurde, und ihr Hauptmerkmal ist "Slow down and speed up videos directly on YouTube like you would on a turntable.".
Erweiterungsscreenshots
ScrewMyCode.in: Pitch control for YouTube-Erweiterungs-CRX-Datei herunterladen
Laden Sie ScrewMyCode.in: Pitch control for YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
## 📖 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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lnoedjelpkmhegefhhjljmggjdicnbaa |
| Offizielle URL | https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa |
| Beschreibung | Slow down and speed up videos directly on YouTube like you would on a turntable. |
| Dateigröße | 177 KB |
| Installationsanzahl | 377 |
| Aktuelle Version | 2.4.0 |
| Letztes Update | 2022-08-06 |
| Veröffentlichungsdatum | 2022-02-23 |
| Bewertung | 4.33/5 Insgesamt 6 Bewertungen |
| Entwickler | Bamdad |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/bamdadsabbagh/screwmycode-in--extension |
| Hilfeseite URL | https://github.com/bamdadsabbagh/screwmycode-in--extension/issues |
| URL der Datenschutzrichtlinien-Seite | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
| Unterstützte Sprachen | 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"
]
} | |