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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Discord DM Hider

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Discord DM Hider Discord DM Hider
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": []
}