YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

O que é YouTube Chapterize?

YouTube Chapterize é uma extensão do Chrome desenvolvida por blackway, e sua principal característica é "Provides convenience functions to handle YouTube chapters.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Chapterize

Baixe arquivos de extensão YouTube Chapterize no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome YouTube Chapterize YouTube Chapterize
ID pndbjffcoioeikhcfofoefnlbiiidclh
URL Oficial https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh
Descrição Provides convenience functions to handle YouTube chapters.
Tamanho do Arquivo 10.32 KB
Contagem de Instalações 58
Versão Atual 2
Última Atualização 2021-11-24
Data de Publicação 2021-11-23
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor blackway
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}