Sleeper Chat Hider

Hides the sleeper chat feed

O que é Sleeper Chat Hider?

Sleeper Chat Hider é uma extensão do Chrome desenvolvida por sleeperHider, e sua principal característica é "Hides the sleeper chat feed".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Sleeper Chat Hider

Baixe arquivos de extensão Sleeper Chat Hider no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Sleeper Chat Hider Sleeper Chat Hider
ID hhlggfopbcchakonofkaceakbooplgnb
URL Oficial https://chromewebstore.google.com/detail/sleeper-chat-hider/hhlggfopbcchakonofkaceakbooplgnb
Descrição Hides the sleeper chat feed
Tamanho do Arquivo 119 KB
Contagem de Instalações 176
Versão Atual 1.2
Última Atualização 2023-07-24
Data de Publicação 2019-07-14
Desenvolvedor sleeperHider
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}