Sleeper Chat Hider
Hides the sleeper chat feed
什麼是Sleeper Chat Hider?
Sleeper Chat Hider是由sleeperHider開發的Chrome擴展程式,該擴展的主要功能是“Hides the sleeper chat feed”。
擴展截圖
下載Sleeper Chat Hider擴展crx文件
下載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 |
官方網址 | 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 } |