YouTube Caption Checker

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

什么是YouTube Caption Checker?

YouTube Caption Checker是由2jun0开发的Chrome扩展程序,该扩展的主要功能是“Show if there are captions for the language you want in YouTube videos.”。

扩展截图

screenshot

下载YouTube Caption Checker扩展crx文件

下载YouTube Caption Checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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)                    

扩展基本信息

名称 YouTube Caption Checker YouTube Caption Checker
ID onmelgncdnoihoaopmkcacadlmjmcehd
官方URL https://chromewebstore.google.com/detail/youtube-caption-checker/onmelgncdnoihoaopmkcacadlmjmcehd
简介 Show if there are captions for the language you want in YouTube videos.
文件大小 60.18 KB
安装次数 131
当前版本 1.5.8
更新时间 2023-02-22
上架时间 2021-10-19
评分 5.00/5 共1次评分
开发者 2jun0
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/2jun0/yt-caption-checker
支持的语言 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"
}