Discord Status

Set your discord status, simple, easy and free.

Hvad er Discord Status?

Discord Status er en Chrome-udvidelse udviklet af Bryson Guwin, og dens hovedfunktion er "Set your discord status, simple, easy and free.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Discord Status-udvidelses-CRX-fil

Download Discord Status-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Discord Status Discord Status
ID phhkfpenalhlnhefgcehhdgoabneidjn
Officiel URL https://chromewebstore.google.com/detail/discord-status/phhkfpenalhlnhefgcehhdgoabneidjn
Beskrivelse Set your discord status, simple, easy and free.
Filstørrelse 36.92 KB
Antal Installationer 4,038
Nuværende Version 1.0.0
Senest Opdateret 2021-04-01
Udgivelsesdato 2020-12-01
Bedømmelse 2.93/5 Samlet 30 Bedømmelser
Udvikler Bryson Guwin
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}