NRK TV Dual Subtitles

Provides side-by-side subtitle translations for tv.nrk.no

NRK TV Dual Subtitles क्या है?

NRK TV Dual Subtitles rioam2 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides side-by-side subtitle translations for tv.nrk.no"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NRK TV Dual Subtitles एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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