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 هو إضافة Chrome تم تطويرها بواسطة lolsuffocate، والميزة الرئيسية لها هي "Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Discord DM Hider
قم بتنزيل ملفات الامتداد Discord DM Hider بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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": [] } |