Discord Blocked Blocker
Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.
Co to jest Discord Blocked Blocker?
Discord Blocked Blocker to rozszerzenie Chrome opracowane przez http://schuhardt.net, a jego główną funkcją jest „Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Discord Blocked Blocker
Pobierz pliki rozszerzeń Discord Blocked Blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ppiplelhcflmhidelpnoipopdjniapbo |
Oficjalny URL | https://chrome.google.com/webstore/detail/discord-blocked-blocker/ppiplelhcflmhidelpnoipopdjniapbo |
Opis | Hides the "Blocked" messages that appear in Discord's IM interface when a user whom you have blocked sends a message. |
Rozmiar pliku | 36.63 KB |
Liczba instalacji | 410 |
Aktualna Wersja | 1.5 |
Ostatnia Aktualizacja | 2020-08-01 |
Data Publikacji | 2020-02-04 |
Ocena | 3.91/5 Łącznie 23 Oceny |
Deweloper | http://schuhardt.net |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/aschuhardt/Discord-Blocked-Blocker |
Obsługiwane Języki | 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" } } |