Discord Theme Customizer

Custom discord theme

什麼是Discord Theme Customizer?

Discord Theme Customizer是由ThaiNph開發的Chrome擴展程式,該擴展的主要功能是“Custom discord theme”。

擴展截圖

screenshot

下載Discord Theme Customizer擴展crx文件

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

擴展使用說明

                        This extension append css to customize Discord web app UI. User can select themes & app icons which provide by extension.                    

擴展基本資訊

名稱 Discord Theme Customizer Discord Theme Customizer
ID kmfkebaealpkmmdgkkfdjejjoimdoida
官方網址 https://chromewebstore.google.com/detail/discord-theme-customizer/kmfkebaealpkmmdgkkfdjejjoimdoida
簡介 Custom discord theme
檔案大小 177 KB
安裝次數 136
目前版本 1.0.1
更新時間 2023-11-29
上架時間 2023-11-22
評分 4.44/5 共 9 次評分
開發者 ThaiNph
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Discord Theme Customizer",
    "description": "Custom discord theme",
    "version": "1.0.1",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/discord.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "setting.html",
    "action": {
        "default_popup": "setting.html",
        "default_icon": {
            "16": "images\/icon.png",
            "48": "images\/icon.png"
        }
    }
}