Sleeper Chat Hider

Hides the sleeper chat feed

What is Sleeper Chat Hider?

Sleeper Chat Hider is a Chrome extension developed by sleeperHider, and its main feature is "Hides the sleeper chat feed".

Extension Screenshots

screenshot
screenshot

Download Sleeper Chat Hider Extension CRX File

Download Sleeper Chat Hider extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Sleeper Chat Hider Sleeper Chat Hider
ID hhlggfopbcchakonofkaceakbooplgnb
Official URL https://chromewebstore.google.com/detail/sleeper-chat-hider/hhlggfopbcchakonofkaceakbooplgnb
Description Hides the sleeper chat feed
File Size 119 KB
Installation Count 176
Current Version 1.2
Last Updated 2023-07-24
Publish Date 2019-07-14
Developer sleeperHider
Email [email protected]
Payment Type free
Supported Languages 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
}