Discord Status

Set your discord status, simple, easy and free.

O que é Discord Status?

Discord Status é uma extensão do Chrome desenvolvida por Bryson Guwin, e sua principal característica é "Set your discord status, simple, easy and free.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Discord Status

Baixe arquivos de extensão Discord Status no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Discord Status Discord Status
ID phhkfpenalhlnhefgcehhdgoabneidjn
URL Oficial https://chromewebstore.google.com/detail/discord-status/phhkfpenalhlnhefgcehhdgoabneidjn
Descrição Set your discord status, simple, easy and free.
Tamanho do Arquivo 36.92 KB
Contagem de Instalações 4,038
Versão Atual 1.0.0
Última Atualização 2021-04-01
Data de Publicação 2020-12-01
Classificação 2.93/5 Total de 30 Avaliações
Desenvolvedor Bryson Guwin
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}