Discord DM Hider
Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.
什么是Discord DM Hider?
Discord DM Hider是由lolsuffocate开发的Chrome扩展程序,该扩展的主要功能是“Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.”。
扩展截图
下载Discord DM Hider扩展crx文件
下载Discord DM Hider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A small extension to hide DM icons from the sidebar in Discord. Useful for streamers or work where other users with NSFW profile pics are a concern. NOTE: This does not block the notification sound for new messages, however these can be turned off in Discord's own settings.
扩展基本信息
名称 | |
ID | cmkbdgmbolkmfgoobmbkfojfhkgjlbbl |
官方URL | https://chromewebstore.google.com/detail/discord-dm-hider/cmkbdgmbolkmfgoobmbkfojfhkgjlbbl |
简介 | Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings. |
文件大小 | 3.89 KB |
安装次数 | 16 |
当前版本 | 1.0 |
更新时间 | 2021-08-28 |
上架时间 | 2021-08-28 |
开发者 | lolsuffocate |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Discord DM Hider", "description": "Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.", "version": "1.0", "content_scripts": [ { "all_frames": true, "exclude_matches": [ "*:\/\/*.discord.com\/*.html", "*:\/\/*.discord.com\/*.html?*", "*:\/\/*.discord.com\/*.htm", "*:\/\/*.discord.com\/*.htm?*" ], "js": [ "content.js" ], "matches": [ "*:\/\/*.discord.com\/*" ] } ], "action": { "default_popup": "popup.html" }, "permissions": [] } |