Transflixed
Add translations to netflix subtitles
Transflixed là gì?
Transflixed là một tiện ích mở rộng Chrome được phát triển bởi http://transflixed.com, và tính năng chính của nó là "Add translations to netflix subtitles".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Transflixed
Tải xuống các tệp mở rộng Transflixed 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | oidimfcfbfnfodkclkaoeaobgnpbeopp |
URL Chính Thức | https://chrome.google.com/webstore/detail/transflixed/oidimfcfbfnfodkclkaoeaobgnpbeopp |
Mô tả | Add translations to netflix subtitles |
Kích Thước Tệp | 124 KB |
Số Lần Cài Đặt | 276 |
Phiên Bản Hiện Tại | 0.0.0.1 |
Cập Nhật Lần Cuối | 2018-04-10 |
Ngày Phát Hành | 2018-04-10 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | http://transflixed.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://transflixed.com |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |