closed caption - dual subtitle viewer

Extension for viewing another language subtitles and existing subtitles together

closed caption - dual subtitle viewerคืออะไร?

closed caption - dual subtitle viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Takhyun Kim และคุณลักษณะหลักของมันคือ "Extension for viewing another language subtitles and existing subtitles together"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย closed caption - dual subtitle viewer

ดาวน์โหลดไฟล์ส่วนขยาย closed caption - dual subtitle viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Watch subtitles in your preferred language alongside existing subtitles with just one click!

🚀 Supported sites
- netflix
- youtube
- udemy
- ted
- etc...

⭐️ Supported features
- Support for dual closed captions
- change the closed captions size
- Supports a lot of language

If you have any sites you'd like to see added, or any other questions, please contact us at kimkih1218@gmail.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ closed caption - dual subtitle viewer closed caption - dual subtitle viewer
ID pjfhdffkbjfneojiamjnooaagomkimde
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/closed-caption-dual-subti/pjfhdffkbjfneojiamjnooaagomkimde
คำอธิบาย Extension for viewing another language subtitles and existing subtitles together
ขนาดไฟล์ 58.99 KB
จำนวนการติดตั้ง 895
เวอร์ชันปัจจุบัน 2.8.0
อัปเดตครั้งล่าสุด 2024-01-04
วันที่เผยแพร่ 2022-10-19
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Takhyun Kim
อีเมล kimkih1218@gmail.com
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/TakhyunKim/closed-caption-extension
URL หน้านโยบายความเป็นส่วนตัว https://takhyunkim.notion.site/Privacy-Policy-8bd4aed00ac3404aa107e91165965ebd?pvs=4
ภาษาที่รองรับ de,en,fil,fr,vi,tr,ca,da,es,pl,fi,cs,el,bg,uk,th,ar,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "manifest_version": 3,
    "version": "2.8.0",
    "description": "__MSG_description__",
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "commands"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/kitty-16.png",
            "32": "assets\/kitty-32.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            }
        },
        "active-translate": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Toggle translate"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/frontendmasters.com\/*",
                "*:\/\/www.udemy.com\/*",
                "*:\/\/www.youtube.com\/*",
                "*:\/\/epicreact.dev\/*",
                "*:\/\/www.ted.com\/*",
                "*:\/\/www.netflix.com\/*",
                "*:\/\/threejs-journey.com\/*",
                "*:\/\/start.ru\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/kitty-16.png",
        "32": "assets\/kitty-32.png",
        "48": "assets\/kitty-48.png",
        "128": "assets\/kitty-128.png"
    }
}