Discord Theme Customizer

Custom discord theme

Discord Theme Customizerคืออะไร?

Discord Theme Customizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ThaiNph และคุณลักษณะหลักของมันคือ "Custom discord theme"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Discord Theme Customizer

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
        }
    }
}