Discord Theme Customizer

Custom discord theme

Discord Theme Customizer là gì?

Discord Theme Customizer là một tiện ích mở rộng Chrome được phát triển bởi ThaiNph, và tính năng chính của nó là "Custom discord theme".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Discord Theme Customizer

Tải xuống các tệp mở rộng Discord Theme Customizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Discord Theme Customizer Discord Theme Customizer
ID kmfkebaealpkmmdgkkfdjejjoimdoida
URL Chính Thức https://chromewebstore.google.com/detail/discord-theme-customizer/kmfkebaealpkmmdgkkfdjejjoimdoida
Mô tả Custom discord theme
Kích Thước Tệp 177 KB
Số Lần Cài Đặt 136
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-11-29
Ngày Phát Hành 2023-11-22
Đánh Giá 4.44/5 Tổng số 9 Đánh Giá
Nhà Phát Triển ThaiNph
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}