ScrewMyCode.in: Pitch control for YouTube
Slow down and speed up videos directly on YouTube like you would on a turntable.
Vad är ScrewMyCode.in: Pitch control for YouTube?
ScrewMyCode.in: Pitch control for YouTube är en Chrome-tillägg utvecklad av Bamdad, och dess huvudfunktion är "Slow down and speed up videos directly on YouTube like you would on a turntable.".
Tilläggsskärmbilder
Ladda ner ScrewMyCode.in: Pitch control for YouTube-förlängningens CRX-fil
Ladda ner ScrewMyCode.in: Pitch control for YouTube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
## 📖 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äggande Information om Tillägg
| Namn | |
| ID | lnoedjelpkmhegefhhjljmggjdicnbaa |
| Officiell webbadress | https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa |
| Beskrivning | Slow down and speed up videos directly on YouTube like you would on a turntable. |
| Filstorlek | 177 KB |
| Antal Installationer | 377 |
| Aktuell Version | 2.4.0 |
| Senast Uppdaterad | 2022-08-06 |
| Publiceringsdatum | 2022-02-23 |
| Betyg | 4.33/5 Totalt 6 Betyg |
| Utvecklare | Bamdad |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/bamdadsabbagh/screwmycode-in--extension |
| Hjälpsida URL | https://github.com/bamdadsabbagh/screwmycode-in--extension/issues |
| URL till Sekretesspolicy Sidan | https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy |
| Stödda Språk | 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"
]
} | |