Discord Blocked Blocker
Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.
What is Discord Blocked Blocker?
Discord Blocked Blocker is a Chrome extension developed by http://schuhardt.net, and its main feature is "Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.".
Extension Screenshots
Download Discord Blocked Blocker Extension CRX File
Download Discord Blocked Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ppiplelhcflmhidelpnoipopdjniapbo |
Official URL | https://chrome.google.com/webstore/detail/discord-blocked-blocker/ppiplelhcflmhidelpnoipopdjniapbo |
Description | Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message. |
File Size | 36.63 KB |
Installation Count | 410 |
Current Version | 1.5 |
Last Updated | 2020-08-01 |
Publish Date | 2020-02-04 |
Rating | 3.91/5 Total 23 Ratings |
Developer | http://schuhardt.net |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/aschuhardt/Discord-Blocked-Blocker |
Supported Languages | 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" } } |