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是由DeeFrancois開發的Chrome擴展程式,該擴展的主要功能是“Enables dual language subtitles for NRK TV with the help of your browser's auto-translate feature”。
擴展截圖
下載NRK TV Language Learning Subtitles擴展crx文件
下載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 |
ID | lmjfcijpnghdkpnoakgljodpjnimbakp |
官方網址 | 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" } } |