NRK TV Dual Subtitles
Provides side-by-side subtitle translations for tv.nrk.no
Qu'est-ce que NRK TV Dual Subtitles ?
NRK TV Dual Subtitles est une extension Chrome développée par rioam2, et sa fonction principale est "Provides side-by-side subtitle translations for tv.nrk.no".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension NRK TV Dual Subtitles
Téléchargez les fichiers d'extension NRK TV Dual Subtitles au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | NRK TV Dual Subtitles |
ID | nhgbnfkfpbfifgjbnmgdlpeimjilkkhn |
URL Officiel | https://chromewebstore.google.com/detail/nrk-tv-dual-subtitles/nhgbnfkfpbfifgjbnmgdlpeimjilkkhn |
Description | Provides side-by-side subtitle translations for tv.nrk.no |
Taille du Fichier | 16.22 KB |
Nombre d'Installations | 631 |
Version Actuelle | 1.1.3 |
Dernière Mise à Jour | 2022-02-24 |
Date de Publication | 2021-03-05 |
Évaluation | 4.80/5 Total 5 Évaluations |
Développeur | rioam2 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/rioam2/nrktv-dual-subs |
URL de la Page d'Aide | https://github.com/rioam2/nrktv-dual-subs/issues |
Langues Prises en Charge | 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'" } |