Custom Youtube Playback Speed

Easy way to change youtube video playback speed

Vad är Custom Youtube Playback Speed?

Custom Youtube Playback Speed är en Chrome-tillägg utvecklad av PH03NIX Software, och dess huvudfunktion är "Easy way to change youtube video playback speed".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Custom Youtube Playback Speed-förlängningens CRX-fil

Ladda ner Custom Youtube Playback Speed-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

                        Simple extension, which let you change playback speed of youtube videos.
You can setup value form range 0.10x to 10x with 0.10x step.

3 ways of control integrated into youtube interface: by slider, numeric input or by keys defined in settings.                    

Grundläggande Information om Tillägg

Namn Custom Youtube Playback Speed Custom Youtube Playback Speed
ID mlnghacnjjppjfbbjbpkgcemiaglbpii
Officiell webbadress https://chromewebstore.google.com/detail/custom-youtube-playback-s/mlnghacnjjppjfbbjbpkgcemiaglbpii
Beskrivning Easy way to change youtube video playback speed
Filstorlek 174 KB
Antal Installationer 116
Aktuell Version 1.4.3
Senast Uppdaterad 2023-12-03
Publiceringsdatum 2022-02-01
Betyg 4.67/5 Totalt 3 Betyg
Utvecklare PH03NIX Software
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Youtube Playback Speed",
    "description": "Easy way to change youtube video playback speed",
    "version": "1.4.3",
    "short_name": "YTSpeed",
    "author": "Krzaku",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "index.html",
        "default_title": "Custom yt playback speed settings"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "\/icons\/extension_icon16.png",
        "32": "\/icons\/extension_icon32.png",
        "48": "\/icons\/extension_icon48.png",
        "128": "\/icons\/extension_icon128.png"
    }
}