Discord Theme Customizer
Custom discord theme
什么是Discord Theme Customizer?
Discord Theme Customizer是由ThaiNph开发的Chrome扩展程序,该扩展的主要功能是“Custom discord theme”。
扩展截图
下载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 |
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" } } } |