YouTube Caption Checker

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

Qu'est-ce que YouTube Caption Checker ?

YouTube Caption Checker est une extension Chrome développée par 2jun0, et sa fonction principale est "Show if there are captions for the language you want in YouTube videos.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Caption Checker

Téléchargez les fichiers d'extension YouTube Caption Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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)                    

Informations de Base sur l'Extension

Nom YouTube Caption Checker YouTube Caption Checker
ID onmelgncdnoihoaopmkcacadlmjmcehd
URL Officiel https://chromewebstore.google.com/detail/youtube-caption-checker/onmelgncdnoihoaopmkcacadlmjmcehd
Description Show if there are captions for the language you want in YouTube videos.
Taille du Fichier 60.18 KB
Nombre d'Installations 131
Version Actuelle 1.5.8
Dernière Mise à Jour 2023-02-22
Date de Publication 2021-10-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur 2jun0
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/2jun0/yt-caption-checker
Langues Prises en Charge 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"
}