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 |
官方網址 | 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 } |