Discord Status
Set your discord status, simple, easy and free.
Cos'è Discord Status?
Discord Status è un'estensione di Chrome sviluppata da Bryson Guwin, e la sua funzione principale è "Set your discord status, simple, easy and free.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Discord Status
Scarica i file di estensione Discord Status in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Discord Status |
ID | phhkfpenalhlnhefgcehhdgoabneidjn |
URL Ufficiale | https://chromewebstore.google.com/detail/discord-status/phhkfpenalhlnhefgcehhdgoabneidjn |
Descrizione | Set your discord status, simple, easy and free. |
Dimensione del File | 36.92 KB |
Conteggio Installazioni | 4,038 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-04-01 |
Data di Pubblicazione | 2020-12-01 |
Valutazione | 2.93/5 Totale 30 Valutazioni |
Sviluppatore | Bryson Guwin |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |