Chat Privacy - Beta

We will blur your chat if you don't want to be seen

O que é Chat Privacy - Beta?

Chat Privacy - Beta é uma extensão do Chrome desenvolvida por rub1cc, e sua principal característica é "We will blur your chat if you don't want to be seen".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chat Privacy - Beta

Baixe arquivos de extensão Chat Privacy - Beta 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

                        This extension can help you to blur your private chat in Telegram and Whatsapp web                    

Informações Básicas da Extensão

Nome Chat Privacy - Beta Chat Privacy - Beta
ID ibplklenbaicogjbaimboaopngeoeofh
URL Oficial https://chromewebstore.google.com/detail/chat-privacy-beta/ibplklenbaicogjbaimboaopngeoeofh
Descrição We will blur your chat if you don't want to be seen
Tamanho do Arquivo 16.14 KB
Contagem de Instalações 48
Versão Atual 0.0.2
Última Atualização 2022-08-10
Data de Publicação 2022-08-07
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor rub1cc
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chat Privacy - Beta",
    "version": "0.0.2",
    "manifest_version": 3,
    "description": "We will blur your chat if you don't want to be seen",
    "action": {
        "browser_style": true,
        "default_popup": "popup\/popup.html",
        "default_title": "Chat Privacy",
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/web.telegram.org\/*"
            ],
            "js": [
                "init-tele.js"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "matches": [
                "*:\/\/web.whatsapp.com\/*"
            ],
            "js": [
                "init-wa.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/web.telegram.org\/*",
                "*:\/\/web.whatsapp.com\/*"
            ],
            "resources": [
                "css\/lastMessages.css",
                "css\/conversations.css",
                "css\/usernames.css",
                "css\/profilePictures.css",
                "css\/wa\/lastMessages.css",
                "css\/wa\/conversations.css",
                "css\/wa\/usernames.css",
                "css\/wa\/profilePictures.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/web.telegram.org\/*",
        "*:\/\/web.whatsapp.com\/*"
    ],
    "permissions": [
        "storage",
        "tabs",
        "scripting"
    ]
}