Udemy Double Subtitle

Double Subtitle

什麼是Udemy Double Subtitle?

Udemy Double Subtitle是由robertkao5656開發的Chrome擴展程式,該擴展的主要功能是“Double Subtitle”。

擴展截圖

screenshot
screenshot
screenshot

下載Udemy Double Subtitle擴展crx文件

下載Udemy Double Subtitle擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Support double subtitles for Udemy:
Subtitle Mode: 
    Support off, Single, and Dual
Second Language: 
    Supports 12 languages showing dual subtitles, they support Arabic, Chinese Traditional, Chinese Simplified, French, German, Hindi, Italian, Japanese, Korean, Portuguese, Spanish, and Turkmen.

If you have any ideas, issues, or suggestions, you can send them to me at [email protected]                    

擴展基本資訊

名稱 Udemy Double Subtitle Udemy Double Subtitle
ID hicpdhddknifpgembdnboojbnpmahfnj
官方網址 https://chromewebstore.google.com/detail/udemy-double-subtitle/hicpdhddknifpgembdnboojbnpmahfnj
簡介 Double Subtitle
檔案大小 203 KB
安裝次數 106
目前版本 1.1.0
更新時間 2023-12-13
上架時間 2023-10-30
開發者 robertkao5656
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Udemy Double Subtitle",
    "description": "Double Subtitle",
    "version": "1.1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Udemy Double Subtitle",
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.udemy.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}