Better Shorts Player

Adds video player controls to YouTube Shorts

Co je Better Shorts Player?

Better Shorts Player je rozšíření Chrome vyvinuté Joubert Van Zyl, a jeho hlavní funkcí je „Adds video player controls to YouTube Shorts“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Better Shorts Player

Stáhněte si soubory rozšíření Better Shorts Player ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Better Shorts Player adds the ability to scrub through a shorts video, play, pause, adjust volume and mute the video.

The controls fade away when not being hovered on as to not be intrusive to the video.                    

Základní Informace o Rozšíření

Název Better Shorts Player Better Shorts Player
ID bagcbccbbigjaicnmlcllplhjdfjeimn
Oficiální URL https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn
Popis Adds video player controls to YouTube Shorts
Velikost souboru 18.21 KB
Počet instalací 802
Aktuální Verze 1.0.0
Poslední Aktualizace 2023-03-06
Datum Vydání 2023-03-06
Hodnocení 4.77/5 Celkem 13 Hodnocení
Vývojář Joubert Van Zyl
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Shorts Player",
    "description": "Adds video player controls to YouTube Shorts",
    "manifest_version": 3,
    "version": "1.0.0",
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/pause.png",
                "assets\/play.png",
                "assets\/muted.png",
                "assets\/unmuted.png"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    }
}