NRK TV Dual Subtitles
Provides side-by-side subtitle translations for tv.nrk.no
Was ist NRK TV Dual Subtitles?
NRK TV Dual Subtitles ist eine Chrome-Erweiterung, die von rioam2 entwickelt wurde, und ihr Hauptmerkmal ist "Provides side-by-side subtitle translations for tv.nrk.no".
Erweiterungsscreenshots
NRK TV Dual Subtitles-Erweiterungs-CRX-Datei herunterladen
Laden Sie NRK TV Dual Subtitles-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | NRK TV Dual Subtitles |
ID | nhgbnfkfpbfifgjbnmgdlpeimjilkkhn |
Offizielle URL | https://chromewebstore.google.com/detail/nrk-tv-dual-subtitles/nhgbnfkfpbfifgjbnmgdlpeimjilkkhn |
Beschreibung | Provides side-by-side subtitle translations for tv.nrk.no |
Dateigröße | 16.22 KB |
Installationsanzahl | 631 |
Aktuelle Version | 1.1.3 |
Letztes Update | 2022-02-24 |
Veröffentlichungsdatum | 2021-03-05 |
Bewertung | 4.80/5 Insgesamt 5 Bewertungen |
Entwickler | rioam2 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/rioam2/nrktv-dual-subs |
Hilfeseite URL | https://github.com/rioam2/nrktv-dual-subs/issues |
Unterstützte Sprachen | 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'" } |