Udemy Double Subtitle

Double Subtitle

Cos'è Udemy Double Subtitle?

Udemy Double Subtitle è un'estensione di Chrome sviluppata da robertkao5656, e la sua funzione principale è "Double Subtitle".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Udemy Double Subtitle

Scarica i file di estensione Udemy Double Subtitle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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]                    

Informazioni di Base sull'Estensione

Nome Udemy Double Subtitle Udemy Double Subtitle
ID hicpdhddknifpgembdnboojbnpmahfnj
URL Ufficiale https://chromewebstore.google.com/detail/udemy-double-subtitle/hicpdhddknifpgembdnboojbnpmahfnj
Descrizione Double Subtitle
Dimensione del File 203 KB
Conteggio Installazioni 106
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-12-13
Data di Pubblicazione 2023-10-30
Sviluppatore robertkao5656
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}