Chat Privacy - Beta

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

Cos'è Chat Privacy - Beta?

Chat Privacy - Beta è un'estensione di Chrome sviluppata da rub1cc, e la sua funzione principale è "We will blur your chat if you don't want to be seen".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chat Privacy - Beta

Scarica i file di estensione Chat Privacy - Beta in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Chat Privacy - Beta Chat Privacy - Beta
ID ibplklenbaicogjbaimboaopngeoeofh
URL Ufficiale https://chromewebstore.google.com/detail/chat-privacy-beta/ibplklenbaicogjbaimboaopngeoeofh
Descrizione We will blur your chat if you don't want to be seen
Dimensione del File 16.14 KB
Conteggio Installazioni 48
Versione Corrente 0.0.2
Ultimo Aggiornamento 2022-08-10
Data di Pubblicazione 2022-08-07
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore rub1cc
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}