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是由Takhyun Kim开发的Chrome扩展程序,该扩展的主要功能是“Extension for viewing another language subtitles and existing subtitles together”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载closed caption - dual subtitle viewer扩展crx文件

下载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 [email protected]                    

扩展基本信息

名称 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
电子邮箱 [email protected]
付费类型 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"
    }
}