NRK TV Dual Subtitles
Provides side-by-side subtitle translations for tv.nrk.no
Τι είναι το NRK TV Dual Subtitles;
Το NRK TV Dual Subtitles είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rioam2, και η κύρια λειτουργία του είναι "Provides side-by-side subtitle translations for tv.nrk.no".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης NRK TV Dual Subtitles
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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'" } |