Chat Privacy - Beta

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

Wat is Chat Privacy - Beta?

Chat Privacy - Beta is een Chrome-extensie ontwikkeld door rub1cc, en de belangrijkste functie is "We will blur your chat if you don't want to be seen".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Chat Privacy - Beta

Download Chat Privacy - Beta-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Chat Privacy - Beta Chat Privacy - Beta
ID ibplklenbaicogjbaimboaopngeoeofh
Officiële URL https://chromewebstore.google.com/detail/chat-privacy-beta/ibplklenbaicogjbaimboaopngeoeofh
Beschrijving We will blur your chat if you don't want to be seen
Bestandsgrootte 16.14 KB
Aantal Installaties 48
Huidige Versie 0.0.2
Laatst Bijgewerkt 2022-08-10
Publicatiedatum 2022-08-07
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar rub1cc
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}