Discord Status
Set your discord status, simple, easy and free.
Wat is Discord Status?
Discord Status is een Chrome-extensie ontwikkeld door Bryson Guwin, en de belangrijkste functie is "Set your discord status, simple, easy and free.".
Extensie Screenshots
Download het CRX-bestand van de extensie Discord Status
Download Discord Status-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Discord Status |
ID | phhkfpenalhlnhefgcehhdgoabneidjn |
Officiële URL | https://chromewebstore.google.com/detail/discord-status/phhkfpenalhlnhefgcehhdgoabneidjn |
Beschrijving | Set your discord status, simple, easy and free. |
Bestandsgrootte | 36.92 KB |
Aantal Installaties | 4,038 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2021-04-01 |
Publicatiedatum | 2020-12-01 |
Beoordeling | 2.93/5 Totaal 30 Beoordelingen |
Ontwikkelaar | Bryson Guwin |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |