YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

Co to jest YouTube Chapterize?

YouTube Chapterize to rozszerzenie Chrome opracowane przez blackway, a jego główną funkcją jest „Provides convenience functions to handle YouTube chapters.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Chapterize

Pobierz pliki rozszerzeń YouTube Chapterize 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Chapterize YouTube Chapterize
ID pndbjffcoioeikhcfofoefnlbiiidclh
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh
Opis Provides convenience functions to handle YouTube chapters.
Rozmiar pliku 10.32 KB
Liczba instalacji 58
Aktualna Wersja 2
Ostatnia Aktualizacja 2021-11-24
Data Publikacji 2021-11-23
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper blackway
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}