ScrewMyCode.in: Pitch control for YouTube

Slow down and speed up videos directly on YouTube like you would on a turntable.

Co to jest ScrewMyCode.in: Pitch control for YouTube?

ScrewMyCode.in: Pitch control for YouTube to rozszerzenie Chrome opracowane przez Bamdad, a jego główną funkcją jest „Slow down and speed up videos directly on YouTube like you would on a turntable.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ScrewMyCode.in: Pitch control for YouTube

Pobierz pliki rozszerzeń ScrewMyCode.in: Pitch control for YouTube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        ## 📖 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                    

Podstawowe informacje o rozszerzeniu

Nazwa ScrewMyCode.in: Pitch control for YouTube ScrewMyCode.in: Pitch control for YouTube
ID lnoedjelpkmhegefhhjljmggjdicnbaa
Oficjalny URL https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa
Opis Slow down and speed up videos directly on YouTube like you would on a turntable.
Rozmiar pliku 177 KB
Liczba instalacji 377
Aktualna Wersja 2.4.0
Ostatnia Aktualizacja 2022-08-06
Data Publikacji 2022-02-23
Ocena 4.33/5 Łącznie 6 Oceny
Deweloper Bamdad
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/bamdadsabbagh/screwmycode-in--extension
Adres URL Strony Pomocy https://github.com/bamdadsabbagh/screwmycode-in--extension/issues
Adres URL Strony Polityki Prywatności https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy
Obsługiwane Języki 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"
    ]
}