YouTube Caption Checker

Show if there are captions for the language you want in YouTube videos.

O que é YouTube Caption Checker?

YouTube Caption Checker é uma extensão do Chrome desenvolvida por 2jun0, e sua principal característica é "Show if there are captions for the language you want in YouTube videos.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Caption Checker

Baixe arquivos de extensão YouTube Caption Checker 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

                        This extension add a caption tag for the language you want on the video thumbnail in the YouTube. (But if there are no caption, it doesn't add tags)                    

Informações Básicas da Extensão

Nome YouTube Caption Checker YouTube Caption Checker
ID onmelgncdnoihoaopmkcacadlmjmcehd
URL Oficial https://chromewebstore.google.com/detail/youtube-caption-checker/onmelgncdnoihoaopmkcacadlmjmcehd
Descrição Show if there are captions for the language you want in YouTube videos.
Tamanho do Arquivo 60.18 KB
Contagem de Instalações 131
Versão Atual 1.5.8
Última Atualização 2023-02-22
Data de Publicação 2021-10-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor 2jun0
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/2jun0/yt-caption-checker
Idiomas Suportados en,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "yt-caption-checker",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "manifest_version": 3,
    "version": "1.5.8",
    "author": "2jun0",
    "homepage_url": "https:\/\/github.com\/2jun0\/yt-caption-checker",
    "icons": {
        "32": "asset\/logo\/logo-big-32.png",
        "64": "asset\/logo\/logo-big-64.png",
        "128": "asset\/logo\/logo-big-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Options",
        "default_popup": "html\/popup.html",
        "default_icon": "asset\/logo\/logo-little.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content_script_loader.js"
            ],
            "css": [
                "css\/content_script.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "minimum_chrome_version": "92"
}