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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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": [] } |