Udemy Dark Theme

A dark theme for the udemy website

什麼是Udemy Dark Theme?

Udemy Dark Theme是由udemy-dark-theme-devs開發的Chrome擴展程式,該擴展的主要功能是“A dark theme for the udemy website”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Udemy Dark Theme擴展crx文件

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

擴展使用說明

                        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/                    

擴展基本資訊

名稱 Udemy Dark Theme Udemy Dark Theme
ID mnloceeicbhfhinjcnfieonmpindkmpb
官方網址 https://chromewebstore.google.com/detail/udemy-dark-theme/mnloceeicbhfhinjcnfieonmpindkmpb
簡介 A dark theme for the udemy website
檔案大小 51.25 KB
安裝次數 14,161
目前版本 2.1.5
更新時間 2023-11-02
上架時間 2020-05-03
評分 4.31/5 共 74 次評分
開發者 udemy-dark-theme-devs
電子郵箱 [email protected]
付費類型 free
支援的語言 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
}