Darker Discord Theme
When clicked, it changes discord into a 'light out' theme similar to twitter
什么是Darker Discord Theme?
Darker Discord Theme是由DevStoreMaker开发的Chrome扩展程序,该扩展的主要功能是“When clicked, it changes discord into a 'light out' theme similar to twitter”。
扩展截图
下载Darker Discord Theme扩展crx文件
下载Darker Discord Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Darker Discord Theme is exactly what it claims to be, an extension that when clicked, will turn discord dark, into an even darker discord, which is similar to twitter's "lights out" theme.
扩展基本信息
名称 | ![]() |
ID | ghpfgannonidbjlgnooidbjaekginfam |
官方URL | https://chrome.google.com/webstore/detail/darker-discord-theme/ghpfgannonidbjlgnooidbjaekginfam |
简介 | When clicked, it changes discord into a 'light out' theme similar to twitter |
文件大小 | 202 KB |
安装次数 | 504 |
当前版本 | 1.0 |
更新时间 | 2019-10-06 |
上架时间 | 2019-10-06 |
评分 | 2.67/5 共12次评分 |
开发者 | DevStoreMaker |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Darker Discord Theme", "version": "1.0", "description": "When clicked, it changes discord into a 'light out' theme similar to twitter", "manifest_version": 2, "permissions": [ "https:\/\/discordapp.com\/*" ], "browser_action": { "default_icon": "logo.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/discordapp.com\/*" ], "js": [ "background.js" ] } ], "web_accessible_resources": [ "betterDiscord.css" ] } |