Discord Blocked Blocker

Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.

什么是Discord Blocked Blocker?

Discord Blocked Blocker是由http://schuhardt.net开发的Chrome扩展程序,该扩展的主要功能是“Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.”。

扩展截图

screenshot
screenshot

下载Discord Blocked Blocker扩展crx文件

下载Discord Blocked Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        I created this extension after finding myself frustrated by Discord's "Block User" functionality.  The purpose of this tool is to completely hide the annoying "Blocked Message" messages that appear in IM when a blocked user says something.  Peace and quiet.

Source code (MIT Licensed) for this extension can be found here: https://github.com/aschuhardt/Discord-Blocked-Blocker.                    

扩展基本信息

名称 Discord Blocked Blocker Discord Blocked Blocker
ID ppiplelhcflmhidelpnoipopdjniapbo
官方URL https://chrome.google.com/webstore/detail/discord-blocked-blocker/ppiplelhcflmhidelpnoipopdjniapbo
简介 Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.
文件大小 36.63 KB
安装次数 410
当前版本 1.5
更新时间 2020-08-01
上架时间 2020-02-04
评分 3.91/5 共23次评分
开发者 http://schuhardt.net
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/aschuhardt/Discord-Blocked-Blocker
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Discord Blocked Blocker",
    "version": "1.5",
    "description": "Hides the \"Blocked\" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/discord.com\/*"
            ],
            "css": [
                "hideBlockedDiscordUsers.css"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}