NRK TV Dual Subtitles
Provides side-by-side subtitle translations for tv.nrk.no
什麼是NRK TV Dual Subtitles?
NRK TV Dual Subtitles是由rioam2開發的Chrome擴展程式,該擴展的主要功能是“Provides side-by-side subtitle translations for tv.nrk.no”。
擴展截圖
下載NRK TV Dual Subtitles擴展crx文件
下載NRK TV Dual Subtitles擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | NRK TV Dual Subtitles |
ID | nhgbnfkfpbfifgjbnmgdlpeimjilkkhn |
官方網址 | https://chromewebstore.google.com/detail/nrk-tv-dual-subtitles/nhgbnfkfpbfifgjbnmgdlpeimjilkkhn |
簡介 | Provides side-by-side subtitle translations for tv.nrk.no |
檔案大小 | 16.22 KB |
安裝次數 | 631 |
目前版本 | 1.1.3 |
更新時間 | 2022-02-24 |
上架時間 | 2021-03-05 |
評分 | 4.80/5 共 5 次評分 |
開發者 | rioam2 |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/rioam2/nrktv-dual-subs |
說明頁面URL | https://github.com/rioam2/nrktv-dual-subs/issues |
支援的語言 | 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'" } |