Udemy Double Subtitle

Double Subtitle

O que é Udemy Double Subtitle?

Udemy Double Subtitle é uma extensão do Chrome desenvolvida por robertkao5656, e sua principal característica é "Double Subtitle".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Udemy Double Subtitle

Baixe arquivos de extensão Udemy Double Subtitle no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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]                    

Informações Básicas da Extensão

Nome Udemy Double Subtitle Udemy Double Subtitle
ID hicpdhddknifpgembdnboojbnpmahfnj
URL Oficial https://chromewebstore.google.com/detail/udemy-double-subtitle/hicpdhddknifpgembdnboojbnpmahfnj
Descrição Double Subtitle
Tamanho do Arquivo 203 KB
Contagem de Instalações 106
Versão Atual 1.1.0
Última Atualização 2023-12-13
Data de Publicação 2023-10-30
Desenvolvedor robertkao5656
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}