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 |
官方網址 | 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": [] } |