Discord++

Adds numerous features to discord

Discord++ क्या है?

Discord++ DevStoreMaker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds numerous features to discord"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Discord++ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}