Two Captions for YouTube & Netflix

Show subtitles in two languages on Youtube & Netflix

Two Captions for YouTube & Netflixคืออะไร?

Two Captions for YouTube & Netflix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mike Steele และคุณลักษณะหลักของมันคือ "Show subtitles in two languages on Youtube & Netflix"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Two Captions for YouTube & Netflix

ดาวน์โหลดไฟล์ส่วนขยาย Two Captions for YouTube & Netflix ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        - Targeted at language learners who need what the speaker is saying and the translation in user's native language.                    

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

ชื่อ Two Captions for YouTube & Netflix Two Captions for YouTube & Netflix
ID lpeonmjfimoijceaalocpgjjchocbiap
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap
คำอธิบาย Show subtitles in two languages on Youtube & Netflix
ขนาดไฟล์ 4.87 MB
จำนวนการติดตั้ง 34,612
เวอร์ชันปัจจุบัน 2.6.1
อัปเดตครั้งล่าสุด 2021-02-27
วันที่เผยแพร่ 2020-05-26
คะแนน 3.91/5 รวมทั้งหมด 109 คะแนน
ผู้พัฒนา Mike Steele
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mikesteele/dual-captions
URL หน้าช่วยเหลือ https://github.com/mikesteele/dual-captions
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Two Captions for YouTube & Netflix",
    "description": "Show subtitles in two languages on Youtube & Netflix",
    "version": "2.6.1",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Show two captions",
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "bundle.js"
            ],
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/*.kanopy.com\/*",
                "https:\/\/www.disneyplus.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}