Discord Status

Set your discord status, simple, easy and free.

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

Το Discord Status είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Bryson Guwin, και η κύρια λειτουργία του είναι "Set your discord status, simple, easy and free.".

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

screenshot
screenshot

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

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

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

                        Set a Status for your Discord account, Do you want a cool free custom status like bots would have? Well you came to the right place this Chrome Item will help you custom set your status without any struggle.                    

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

Όνομα Discord Status Discord Status
ID phhkfpenalhlnhefgcehhdgoabneidjn
Επίσημο URL https://chromewebstore.google.com/detail/discord-status/phhkfpenalhlnhefgcehhdgoabneidjn
Περιγραφή Set your discord status, simple, easy and free.
Μέγεθος Αρχείου 36.92 KB
Αριθμός Εγκαταστάσεων 4,038
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2021-04-01
Ημερομηνία Δημοσίευσης 2020-12-01
Αξιολόγηση 2.93/5 Συνολικά 30 Αξιολογήσεις
Προγραμματιστής Bryson Guwin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "Discord Status",
    "description": "Set your discord status, simple, easy and free.",
    "icons": {
        "128": "icon.png"
    },
    "version": "1.0.0",
    "author": "UNOStudios",
    "minimum_chrome_version": "41",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/discord.com\/channels\/*",
                "https:\/\/ptb.discord.com\/channels\/*",
                "https:\/\/canary.discord.com\/channels\/*"
            ],
            "js": [
                "discord.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "youtube.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "soundcloud.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/app.plex.tv\/desktop"
            ],
            "js": [
                "plex.js",
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ]
}