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'" } |