YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

Vad är YouTube Chapterize?

YouTube Chapterize är en Chrome-tillägg utvecklad av blackway, och dess huvudfunktion är "Provides convenience functions to handle YouTube chapters.".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Chapterize-förlängningens CRX-fil

Ladda ner YouTube Chapterize-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

                        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.                    

Grundläggande Information om Tillägg

Namn YouTube Chapterize YouTube Chapterize
ID pndbjffcoioeikhcfofoefnlbiiidclh
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh
Beskrivning Provides convenience functions to handle YouTube chapters.
Filstorlek 10.32 KB
Antal Installationer 58
Aktuell Version 2
Senast Uppdaterad 2021-11-24
Publiceringsdatum 2021-11-23
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare blackway
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}