YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

Apa itu YouTube Chapterize?

YouTube Chapterize adalah ekstensi Chrome yang dikembangkan oleh blackway, dan fitur utamanya adalah "Provides convenience functions to handle YouTube chapters.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Chapterize

Unduh file ekstensi YouTube Chapterize dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama YouTube Chapterize YouTube Chapterize
ID pndbjffcoioeikhcfofoefnlbiiidclh
URL Resmi https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh
Deskripsi Provides convenience functions to handle YouTube chapters.
Ukuran File 10.32 KB
Jumlah Instalasi 58
Versi Saat Ini 2
Terakhir Diperbarui 2021-11-24
Tanggal Publikasi 2021-11-23
Penilaian 5.00/5 Total 2 Penilaian
Pengembang blackway
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}