YouTube Caption Checker

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

ما هو YouTube Caption Checker؟

YouTube Caption Checker هو إضافة Chrome تم تطويرها بواسطة 2jun0، والميزة الرئيسية لها هي "Show if there are captions for the language you want in YouTube videos.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة YouTube Caption Checker

قم بتنزيل ملفات الامتداد YouTube Caption Checker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
}