Discord Enhancer
This extension will allow you to hide server/channel/member list on Discord
什么是Discord Enhancer?
Discord Enhancer是由dr_ph4nt0m开发的Chrome扩展程序,该扩展的主要功能是“This extension will allow you to hide server/channel/member list on Discord”。
扩展截图
下载Discord Enhancer扩展crx文件
下载Discord Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you like to keep discord open while working on other stuff, this extension will allow you to hide the server list, channel list and member list for the discord.com website. This will allow to keep the window as small as possible without loosing the main message part of the website.
扩展基本信息
名称 | |
ID | pcmklkffcneafillgbbpphkkofelpedo |
官方URL | https://chrome.google.com/webstore/detail/discord-enhancer/pcmklkffcneafillgbbpphkkofelpedo |
简介 | This extension will allow you to hide server/channel/member list on Discord |
文件大小 | 61.16 KB |
安装次数 | 725 |
当前版本 | 1.0 |
更新时间 | 2020-10-07 |
上架时间 | 2020-10-07 |
评分 | 1.67/5 共3次评分 |
开发者 | dr_ph4nt0m |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Discord Enhancer", "description": "This extension will allow you to hide server\/channel\/member list on Discord", "version": "1.0", "browser_action": { "default_title": "Discord Enhancer", "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "css": [ "styles.css" ], "js": [ "content.js" ], "matches": [ "https:\/\/discord.com\/*" ] } ] } |