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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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'"
}