Chat Privacy - Beta
We will blur your chat if you don't want to be seen
¿Qué es Chat Privacy - Beta?
Chat Privacy - Beta es una extensión de Chrome desarrollada por rub1cc, y su función principal es "We will blur your chat if you don't want to be seen".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Chat Privacy - Beta
Descarga archivos de extensión Chat Privacy - Beta en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This extension can help you to blur your private chat in Telegram and Whatsapp web
Información Básica de la Extensión
Nombre | Chat Privacy - Beta |
ID | ibplklenbaicogjbaimboaopngeoeofh |
URL Oficial | https://chromewebstore.google.com/detail/chat-privacy-beta/ibplklenbaicogjbaimboaopngeoeofh |
Descripción | We will blur your chat if you don't want to be seen |
Tamaño del Archivo | 16.14 KB |
Cantidad de Instalaciones | 48 |
Versión Actual | 0.0.2 |
Última Actualización | 2022-08-10 |
Fecha de Publicación | 2022-08-07 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | rub1cc |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |