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 |
公式URL | 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 |
Eメール | [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'" } |