Discord++

Adds numerous features to discord

Τι είναι το Discord++;

Το Discord++ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον DevStoreMaker, και η κύρια λειτουργία του είναι "Adds numerous features to discord".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Discord++

Λήψη αρχείων επέκτασης Discord++ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This chrome extension adds some extra menu options within the discord webapp. These features include: A "Darker Theme" for discord, an expletive filter that can be turned on and off, and a couple of smaller easter-eggs. 

Note: Due to privacy concerns, most names and icons are removed in the demo images                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Discord++ Discord++
ID jcecehccgdjipjfchodbffgbgophlbec
Επίσημο URL https://chrome.google.com/webstore/detail/discord++/jcecehccgdjipjfchodbffgbgophlbec
Περιγραφή Adds numerous features to discord
Μέγεθος Αρχείου 223 KB
Αριθμός Εγκαταστάσεων 6,000
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-03-24
Ημερομηνία Δημοσίευσης 2020-03-24
Αξιολόγηση 1.54/5 Συνολικά 35 Αξιολογήσεις
Προγραμματιστής DevStoreMaker
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Discord++",
    "version": "1.0",
    "description": "Adds numerous features to discord",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/discordapp.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/discordapp.com\/*"
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "darker.css",
        "badwords.txt"
    ],
    "icons": {
        "16": "logo16.png",
        "32": "logo32.png",
        "48": "logo48.png",
        "128": "logo128.png"
    }
}