Sleeper Chat Hider
Hides the sleeper chat feed
Sleeper Chat Hiderคืออะไร?
Sleeper Chat Hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sleeperHider และคุณลักษณะหลักของมันคือ "Hides the sleeper chat feed"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sleeper Chat Hider
ดาวน์โหลดไฟล์ส่วนขยาย Sleeper Chat Hider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
While I appreciate the idea Sleeper has about being always connected with your league and league-mates, sometimes I want a full screen display for only my team. This extension will hide and unhide the chat feed, but you wont miss too much since every reload of the page starts with the feed showing.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Sleeper Chat Hider |
ID | hhlggfopbcchakonofkaceakbooplgnb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/sleeper-chat-hider/hhlggfopbcchakonofkaceakbooplgnb |
คำอธิบาย | Hides the sleeper chat feed |
ขนาดไฟล์ | 119 KB |
จำนวนการติดตั้ง | 176 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2023-07-24 |
วันที่เผยแพร่ | 2019-07-14 |
ผู้พัฒนา | sleeperHider |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sleeper Chat Hider", "version": "1.2", "description": "Hides the sleeper chat feed", "permissions": [ "activeTab", "declarativeContent", "storage", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icons8-no-chat-48.png", "32": "images\/icons8-no-chat-48.png", "48": "images\/icons8-no-chat-48.png", "128": "images\/icons8-no-chat-48.png" } }, "icons": { "16": "images\/icons8-no-chat-48.png", "32": "images\/icons8-no-chat-48.png", "48": "images\/icons8-no-chat-48.png", "128": "images\/icons8-no-chat-48.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/sleeper.app\/*" ], "js": [ "setToggleOnLoad.js" ], "run_at": "document_end" } ], "manifest_version": 3 } |