Sleeper Chat Hider

Hides the sleeper chat feed

Sleeper Chat Hiderとは何ですか?

Sleeper Chat HiderはsleeperHiderによって開発されたChromeの拡張機能で、その主な機能は「Hides the sleeper chat feed」です。

拡張機能のスクリーンショット

screenshot
screenshot

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 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
Eメール [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
}