Udemy Dark Theme

A dark theme for the udemy website

O que é Udemy Dark Theme?

Udemy Dark Theme é uma extensão do Chrome desenvolvida por udemy-dark-theme-devs, e sua principal característica é "A dark theme for the udemy website".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Udemy Dark Theme

Baixe arquivos de extensão Udemy Dark Theme 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

                        Adds dark theme for the udemy.com website

Features:
- adds a dark theme for all views inside the udemy.com domain
- allows you to configure custom colours to create your own theme

--------------------

Github: https://github.com/Pachciar3/udemy-dark-mode-extension

Authors:
Dawid - https://github.com/Pachciar3/
Menno - https://mennoveerkamp.com/                    

Informações Básicas da Extensão

Nome Udemy Dark Theme Udemy Dark Theme
ID mnloceeicbhfhinjcnfieonmpindkmpb
URL Oficial https://chromewebstore.google.com/detail/udemy-dark-theme/mnloceeicbhfhinjcnfieonmpindkmpb
Descrição A dark theme for the udemy website
Tamanho do Arquivo 51.25 KB
Contagem de Instalações 14,161
Versão Atual 2.1.5
Última Atualização 2023-11-02
Data de Publicação 2020-05-03
Classificação 4.31/5 Total de 74 Avaliações
Desenvolvedor udemy-dark-theme-devs
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Udemy Dark Theme",
    "version": "2.1.5",
    "description": "A dark theme for the udemy website",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "scripting"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/udemy_dark_mode16.png",
            "32": "icons\/udemy_dark_mode32.png",
            "48": "icons\/udemy_dark_mode48.png",
            "128": "icons\/udemy_dark_mode128.png"
        }
    },
    "icons": {
        "16": "icons\/udemy_dark_mode16.png",
        "32": "icons\/udemy_dark_mode32.png",
        "48": "icons\/udemy_dark_mode48.png",
        "128": "icons\/udemy_dark_mode128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.udemy.com\/*"
            ],
            "css": [
                "styles\/background.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 3
}