NRK TV Language Learning Subtitles

Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature

NRK TV Language Learning Subtitlesคืออะไร?

NRK TV Language Learning Subtitles เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DeeFrancois และคุณลักษณะหลักของมันคือ "Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NRK TV Language Learning Subtitles

ดาวน์โหลดไฟล์ส่วนขยาย NRK TV Language Learning Subtitles ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        How to use:
- Turn on the subtitles the way you usually would
- Activate your browser's auto-translator by right clicking the page and choosing "Translate to English"(or whichever your native language is) 

This is a big part of my language learning process so I figured I'd make this public since other people might find it as helpful as I do. 

I prefer this to be a simple extension but feel free to email me if you think there are any features I need to add. Or you can just pm me on Reddit at /u/DuhMeTreeUs                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NRK TV Language Learning Subtitles NRK TV Language Learning Subtitles
ID lmjfcijpnghdkpnoakgljodpjnimbakp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/nrk-tv-language-learning/lmjfcijpnghdkpnoakgljodpjnimbakp
คำอธิบาย Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature
ขนาดไฟล์ 79.8 KB
จำนวนการติดตั้ง 278
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2021-08-20
วันที่เผยแพร่ 2021-08-03
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา DeeFrancois
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/DeeFrancois/nrktv-language-learning-subtitles#readme
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NRK TV Language Learning Subtitles",
    "description": "Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature",
    "version": "1.2",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/smallericon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/tv.nrk.no\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/browser_action_icon.png",
        "default_popup": "popup.html"
    }
}