ScrewMyCode.in: Pitch control for YouTube

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

Τι είναι το ScrewMyCode.in: Pitch control for YouTube;

Το ScrewMyCode.in: Pitch control for YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bamdad, και η κύρια λειτουργία του είναι "Slow down and speed up videos directly on YouTube like you would on a turntable.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ScrewMyCode.in: Pitch control for YouTube

Λήψη αρχείων επέκτασης ScrewMyCode.in: Pitch control for YouTube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα ScrewMyCode.in: Pitch control for YouTube ScrewMyCode.in: Pitch control for YouTube
ID lnoedjelpkmhegefhhjljmggjdicnbaa
Επίσημο URL https://chromewebstore.google.com/detail/screwmycodein-pitch-contr/lnoedjelpkmhegefhhjljmggjdicnbaa
Περιγραφή Slow down and speed up videos directly on YouTube like you would on a turntable.
Μέγεθος Αρχείου 177 KB
Αριθμός Εγκαταστάσεων 377
Τρέχουσα Έκδοση 2.4.0
Τελευταία Ενημέρωση 2022-08-06
Ημερομηνία Δημοσίευσης 2022-02-23
Αξιολόγηση 4.33/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Bamdad
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/bamdadsabbagh/screwmycode-in--extension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/bamdadsabbagh/screwmycode-in--extension/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/bamdadsabbagh/bamdadsabbagh/wiki/Privacy-Policy
Υποστηριζόμενες Γλώσσες 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"
    ]
}