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 |
Eメール | [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": [] } |