Two Captions for YouTube & Netflix

Show subtitles in two languages on Youtube & Netflix

Two Captions for YouTube & Netflix là gì?

Two Captions for YouTube & Netflix là một tiện ích mở rộng Chrome được phát triển bởi Mike Steele, và tính năng chính của nó là "Show subtitles in two languages on Youtube & Netflix".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Two Captions for YouTube & Netflix

Tải xuống các tệp mở rộng Two Captions for YouTube & Netflix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Two Captions for YouTube & Netflix Two Captions for YouTube & Netflix
ID lpeonmjfimoijceaalocpgjjchocbiap
URL Chính Thức https://chrome.google.com/webstore/detail/two-captions-for-youtube/lpeonmjfimoijceaalocpgjjchocbiap
Mô tả Show subtitles in two languages on Youtube & Netflix
Kích Thước Tệp 4.87 MB
Số Lần Cài Đặt 34,612
Phiên Bản Hiện Tại 2.6.1
Cập Nhật Lần Cuối 2021-02-27
Ngày Phát Hành 2020-05-26
Đánh Giá 3.91/5 Tổng số 109 Đánh Giá
Nhà Phát Triển Mike Steele
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mikesteele/dual-captions
URL Trang Trợ Giúp https://github.com/mikesteele/dual-captions
Ngôn Ngữ Được Hỗ Trợ 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
}