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 là gì?

Discord DM Hider là một tiện ích mở rộng Chrome được phát triển bởi lolsuffocate, và tính năng chính của nó là "Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Discord DM Hider

Tải xuống các tệp mở rộng Discord DM Hider dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Discord DM Hider Discord DM Hider
ID cmkbdgmbolkmfgoobmbkfojfhkgjlbbl
URL Chính Thức https://chromewebstore.google.com/detail/discord-dm-hider/cmkbdgmbolkmfgoobmbkfojfhkgjlbbl
Mô tả Hides DM icons in the browser version of Discord. Does not block the sound but you can turn that off in Discord settings.
Kích Thước Tệp 3.89 KB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-08-28
Ngày Phát Hành 2021-08-28
Nhà Phát Triển lolsuffocate
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": []
}