Transflixed
Add translations to netflix subtitles
什麼是Transflixed?
Transflixed是由http://transflixed.com開發的Chrome擴展程式,該擴展的主要功能是“Add translations to netflix subtitles”。
擴展截圖
下載Transflixed擴展crx文件
下載Transflixed擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Translate existing subtitles in Netflix to give dual language. This may be useful in learning a language. Currently only German to English. Usage: Install the extension Turn it on (click the icon and click the power button to get it to turn red) Log into netflix.com and play a video which has subtitles Wait for the translation to complete (you should see a notification displaying progress). Try hitting refresh if this doesn't happen... Not officially supported by anyone. Not well tested. Code on GitHub: https://github.com/hajamie/transflixed
擴展基本資訊
名稱 | |
ID | oidimfcfbfnfodkclkaoeaobgnpbeopp |
官方網址 | https://chrome.google.com/webstore/detail/transflixed/oidimfcfbfnfodkclkaoeaobgnpbeopp |
簡介 | Add translations to netflix subtitles |
檔案大小 | 124 KB |
安裝次數 | 276 |
目前版本 | 0.0.0.1 |
更新時間 | 2018-04-10 |
上架時間 | 2018-04-10 |
評分 | 1.00/5 共 1 次評分 |
開發者 | http://transflixed.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://transflixed.com |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Transflixed", "version": "0.0.0.1", "manifest_version": 2, "description": "Add translations to netflix subtitles", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon.png" }, "content_scripts": [ { "css": [], "js": [ "transfixed.js" ], "matches": [ "*:\/\/*.netflix.com\/*" ], "run_at": "document_start" } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "19": "images\/iconOff19.png", "38": "images\/iconOff38.png" } }, "web_accessible_resources": [ "content.js", "worker.js", "style.css" ], "permissions": [ "webRequest", "webRequestBlocking", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "notifications" ], "externally_connectable": { "matches": [ "*:\/\/*.netflix.com\/*" ] }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |