Sleeper Chat Hider

Hides the sleeper chat feed

Что такое Sleeper Chat Hider?

Sleeper Chat Hider - это расширение Chrome, разработанное sleeperHider, и его основная функция - "Hides the sleeper chat feed".

Снимки экрана расширения

screenshot
screenshot

Скачать файл 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 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
}