Two Captions for YouTube & Netflix
Show subtitles in two languages on Youtube & Netflix
什么是Two Captions for YouTube & Netflix?
Two Captions for YouTube & Netflix是由Mike Steele开发的Chrome扩展程序,该扩展的主要功能是“Show subtitles in two languages on Youtube & Netflix”。
扩展截图
下载Two Captions for YouTube & Netflix扩展crx文件
下载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.
扩展基本信息
名称 | |
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 } |