CapTube (Dual Captions for YouTube)

Dual subtitles with AI-enabled translations

CapTube (Dual Captions for YouTube) là gì?

CapTube (Dual Captions for YouTube) là một tiện ích mở rộng Chrome được phát triển bởi Dan Chen, và tính năng chính của nó là "Dual subtitles with AI-enabled translations".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CapTube (Dual Captions for YouTube)

Tải xuống các tệp mở rộng CapTube (Dual Captions for YouTube) 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

                        Dual captions for YouTube || YouTube 雙語字幕

• 整合騰訊翻譯 (Support Tencent Translation)
• 整合 DeepL 翻譯 (Support DeepL Translation)

未來改版預計提供更彈性設定(語言、顏色、…)
Rich options (flexible languages, color, background, etc) is on the way...

----------------

本套件為開源專案 (Open Source on GitHub)
https://github.com/dannvix/CapTube

----------------

使用第三方翻譯服務(如騰訊及 DeepL)需自行申請 API Keys
API keys required for third-party translations (Tencent, DeepL, etc)                    

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

Tên CapTube (Dual Captions for YouTube) CapTube (Dual Captions for YouTube)
ID hbhkmnepjaoiamapfdbhpkjendeeegbb
URL Chính Thức https://chromewebstore.google.com/detail/captube-dual-captions-for/hbhkmnepjaoiamapfdbhpkjendeeegbb
Mô tả Dual subtitles with AI-enabled translations
Kích Thước Tệp 70.8 KB
Số Lần Cài Đặt 1,545
Phiên Bản Hiện Tại 1.2.3
Cập Nhật Lần Cuối 2020-05-13
Ngày Phát Hành 2020-05-12
Đánh Giá 3.57/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Dan Chen
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dannvix/CapTube
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "captube",
    "description": "Dual subtitles with AI-enabled translations",
    "version": "1.2.3",
    "name": "CapTube (Dual Captions for YouTube)",
    "manifest_version": 2,
    "author": "Dan Chen",
    "permissions": [
        "storage",
        "https:\/\/www.youtube.com\/*",
        "https:\/\/tmt.tencentcloudapi.com\/*",
        "https:\/\/api.deepl.com\/*"
    ],
    "background": {
        "scripts": [
            "background.min.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-gray.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png",
        "512": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/www.youtube.com\/*"
        ]
    },
    "web_accessible_resources": [
        "captube.min.js",
        "icon32.png"
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}