Discord Status
Set your discord status, simple, easy and free.
Discord Statusとは何ですか?
Discord StatusはBryson Guwinによって開発されたChromeの拡張機能で、その主な機能は「Set your discord status, simple, easy and free.」です。
拡張機能のスクリーンショット
Discord Status拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } ] } |