Discord Status
Set your discord status, simple, easy and free.
Discord Status là gì?
Discord Status là một tiện ích mở rộng Chrome được phát triển bởi Bryson Guwin, và tính năng chính của nó là "Set your discord status, simple, easy and free.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Discord Status
Tải xuống các tệp mở rộng Discord Status dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Discord Status |
ID | phhkfpenalhlnhefgcehhdgoabneidjn |
URL Chính Thức | https://chromewebstore.google.com/detail/discord-status/phhkfpenalhlnhefgcehhdgoabneidjn |
Mô tả | Set your discord status, simple, easy and free. |
Kích Thước Tệp | 36.92 KB |
Số Lần Cài Đặt | 4,038 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-04-01 |
Ngày Phát Hành | 2020-12-01 |
Đánh Giá | 2.93/5 Tổng số 30 Đánh Giá |
Nhà Phát Triển | Bryson Guwin |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |