Discord Theme Customizer
Custom discord theme
What is Discord Theme Customizer?
Discord Theme Customizer is a Chrome extension developed by ThaiNph, and its main feature is "Custom discord theme".
Extension Screenshots
Download Discord Theme Customizer Extension CRX File
Download Discord Theme Customizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension append css to customize Discord web app UI. User can select themes & app icons which provide by extension.
Extension Basic Information
Name | Discord Theme Customizer |
ID | kmfkebaealpkmmdgkkfdjejjoimdoida |
Official URL | https://chromewebstore.google.com/detail/discord-theme-customizer/kmfkebaealpkmmdgkkfdjejjoimdoida |
Description | Custom discord theme |
File Size | 177 KB |
Installation Count | 136 |
Current Version | 1.0.1 |
Last Updated | 2023-11-29 |
Publish Date | 2023-11-22 |
Rating | 4.44/5 Total 9 Ratings |
Developer | ThaiNph |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } } |