Discord Status
Set your discord status, simple, easy and free.
Discord Statusคืออะไร?
Discord Status เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bryson Guwin และคุณลักษณะหลักของมันคือ "Set your discord status, simple, easy and free."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Discord Status
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } ] } |