Chat Privacy - Beta
We will blur your chat if you don't want to be seen
Was ist Chat Privacy - Beta?
Chat Privacy - Beta ist eine Chrome-Erweiterung, die von rub1cc entwickelt wurde, und ihr Hauptmerkmal ist "We will blur your chat if you don't want to be seen".
Erweiterungsscreenshots
Chat Privacy - Beta-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chat Privacy - Beta-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension can help you to blur your private chat in Telegram and Whatsapp web
Grundlegende Informationen zur Erweiterung
Name | Chat Privacy - Beta |
ID | ibplklenbaicogjbaimboaopngeoeofh |
Offizielle URL | https://chromewebstore.google.com/detail/chat-privacy-beta/ibplklenbaicogjbaimboaopngeoeofh |
Beschreibung | We will blur your chat if you don't want to be seen |
Dateigröße | 16.14 KB |
Installationsanzahl | 48 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2022-08-10 |
Veröffentlichungsdatum | 2022-08-07 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | rub1cc |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |