Chat Privacy - Beta
We will blur your chat if you don't want to be seen
What is Chat Privacy - Beta?
Chat Privacy - Beta is a Chrome extension developed by rub1cc, and its main feature is "We will blur your chat if you don't want to be seen".
Extension Screenshots
Download Chat Privacy - Beta Extension CRX File
Download Chat Privacy - Beta extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension can help you to blur your private chat in Telegram and Whatsapp web
Extension Basic Information
Name | Chat Privacy - Beta |
ID | ibplklenbaicogjbaimboaopngeoeofh |
Official URL | https://chromewebstore.google.com/detail/chat-privacy-beta/ibplklenbaicogjbaimboaopngeoeofh |
Description | We will blur your chat if you don't want to be seen |
File Size | 16.14 KB |
Installation Count | 48 |
Current Version | 0.0.2 |
Last Updated | 2022-08-10 |
Publish Date | 2022-08-07 |
Rating | 5.00/5 Total 3 Ratings |
Developer | rub1cc |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |