NRK TV Dual Subtitles
Provides side-by-side subtitle translations for tv.nrk.no
NRK TV Dual Subtitles là gì?
NRK TV Dual Subtitles là một tiện ích mở rộng Chrome được phát triển bởi rioam2, và tính năng chính của nó là "Provides side-by-side subtitle translations for tv.nrk.no".
Ả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 NRK TV Dual Subtitles
Tải xuống các tệp mở rộng NRK TV Dual Subtitles 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
Show side-by-side dual-language subtitles on the Norwegian Broadcasting Corporation online streaming service: NRKTV (https://tv.nrk.no). Subtitles are translated in real-time using the Google Translate API and displayed to the side of existing Norwegian subtitles. This extension is dedicated to new Norwegian language learners who want to expose themselves to new vocabulary and grammar.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NRK TV Dual Subtitles |
ID | nhgbnfkfpbfifgjbnmgdlpeimjilkkhn |
URL Chính Thức | https://chromewebstore.google.com/detail/nrk-tv-dual-subtitles/nhgbnfkfpbfifgjbnmgdlpeimjilkkhn |
Mô tả | Provides side-by-side subtitle translations for tv.nrk.no |
Kích Thước Tệp | 16.22 KB |
Số Lần Cài Đặt | 631 |
Phiên Bản Hiện Tại | 1.1.3 |
Cập Nhật Lần Cuối | 2022-02-24 |
Ngày Phát Hành | 2021-03-05 |
Đánh Giá | 4.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | rioam2 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rioam2/nrktv-dual-subs |
URL Trang Trợ Giúp | https://github.com/rioam2/nrktv-dual-subs/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "rioam2", "name": "NRK TV Dual Subtitles", "version": "1.1.3", "manifest_version": 2, "description": "Provides side-by-side subtitle translations for tv.nrk.no", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/tv.nrk.no\/*", "*:\/\/clients5.google.com\/*" ], "all_frames": true, "js": [ "content.js" ], "css": [ "styles.css" ] } ], "options_page": "options.html", "browser_action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "options.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self'" } |