Hide Blocked Messages on Discord
Easily hide and show the "1 Blocked Messages" text that appears when you block someone on Discord with a click of a button.
Hide Blocked Messages on Discordคืออะไร?
Hide Blocked Messages on Discord เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BoxedFruits และคุณลักษณะหลักของมันคือ "Easily hide and show the "1 Blocked Messages" text that appears when you block someone on Discord with a click of a button."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide Blocked Messages on Discord
ดาวน์โหลดไฟล์ส่วนขยาย Hide Blocked Messages on Discord ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Tired of seeing the "1 Blocked Messages" message on Discord when you blocked someone? You blocked them for a reason, and you don't intend to read their messages anymore but seeing you are still tempted to read click on the blocked message. Or maybe you are just sick of seeing that message. With this extension, you are able to toggle the "1 Blocked Message" that appears when you block someone on Discord.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Hide Blocked Messages on Discord |
ID | ogpfnafglealngcpbnafcpcbolipmjmn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hide-blocked-messages-on/ogpfnafglealngcpbnafcpcbolipmjmn |
คำอธิบาย | Easily hide and show the "1 Blocked Messages" text that appears when you block someone on Discord with a click of a button. |
ขนาดไฟล์ | 57.3 KB |
จำนวนการติดตั้ง | 195 |
เวอร์ชันปัจจุบัน | 1.0.4 |
อัปเดตครั้งล่าสุด | 2023-09-10 |
วันที่เผยแพร่ | 2023-09-07 |
คะแนน | 4.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | BoxedFruits |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hide Blocked Messages on Discord", "description": "Easily hide and show the \"1 Blocked Messages\" text that appears when you block someone on Discord with a click of a button.", "version": "1.0.4", "action": { "default_popup": "index.html" }, "permissions": [ "activeTab", "storage", "tabs" ], "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "icons": { "48": "src\/icons8-discord-48.png", "128": "src\/icons8-discord-128.png" }, "content_scripts": [ { "js": [ "assets\/content-script-loader.content.tsx.6b109dd7.136e9e30.js" ], "matches": [ "https:\/\/discord.com\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "matches": [ "https:\/\/discord.com\/*" ], "resources": [ "assets\/content.tsx.6b109dd7.js" ], "use_dynamic_url": true } ] } |