YouTube Caption Checker

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

Co to jest YouTube Caption Checker?

YouTube Caption Checker to rozszerzenie Chrome opracowane przez 2jun0, a jego główną funkcją jest „Show if there are captions for the language you want in YouTube videos.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Caption Checker

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

                        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)                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Caption Checker YouTube Caption Checker
ID onmelgncdnoihoaopmkcacadlmjmcehd
Oficjalny URL https://chromewebstore.google.com/detail/youtube-caption-checker/onmelgncdnoihoaopmkcacadlmjmcehd
Opis Show if there are captions for the language you want in YouTube videos.
Rozmiar pliku 60.18 KB
Liczba instalacji 131
Aktualna Wersja 1.5.8
Ostatnia Aktualizacja 2023-02-22
Data Publikacji 2021-10-19
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper 2jun0
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/2jun0/yt-caption-checker
Obsługiwane Języki 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"
}