YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

Co je YouTube Chapterize?

YouTube Chapterize je rozšíření Chrome vyvinuté blackway, a jeho hlavní funkcí je „Provides convenience functions to handle YouTube chapters.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření YouTube Chapterize

Stáhněte si soubory rozšíření YouTube Chapterize 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í

                        Use this extension if you want to shuffle the order of chapters. If you toggle the shuffle button at the top of the chapter list, the play time will shift to a random chapter when one chapter has finished playing.

Features
- You can shuffle chapters in a video.                    

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

Název YouTube Chapterize YouTube Chapterize
ID pndbjffcoioeikhcfofoefnlbiiidclh
Oficiální URL https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh
Popis Provides convenience functions to handle YouTube chapters.
Velikost souboru 10.32 KB
Počet instalací 58
Aktuální Verze 2
Poslední Aktualizace 2021-11-24
Datum Vydání 2021-11-23
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář blackway
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Chapterize",
    "description": "Provides convenience functions to handle YouTube chapters.",
    "version": "2",
    "manifest_version": 3,
    "permissions": [
        "scripting"
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}