Udemy Double Subtitle

Double Subtitle

What is Udemy Double Subtitle?

Udemy Double Subtitle is a Chrome extension developed by robertkao5656, and its main feature is "Double Subtitle".

Extension Screenshots

screenshot
screenshot
screenshot

Download Udemy Double Subtitle Extension CRX File

Download Udemy Double Subtitle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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]                    

Extension Basic Information

Name Udemy Double Subtitle Udemy Double Subtitle
ID hicpdhddknifpgembdnboojbnpmahfnj
Official URL https://chromewebstore.google.com/detail/udemy-double-subtitle/hicpdhddknifpgembdnboojbnpmahfnj
Description Double Subtitle
File Size 203 KB
Installation Count 106
Current Version 1.1.0
Last Updated 2023-12-13
Publish Date 2023-10-30
Developer robertkao5656
Email [email protected]
Payment Type free
Supported Languages 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
        }
    ]
}