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”。

扩展截图

screenshot
screenshot

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