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 |
官方網址 | 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\/*" ] } ] } |