ChatGPT Secure
Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
¿Qué es ChatGPT Secure?
ChatGPT Secure es una extensión de Chrome desarrollada por Yevhenii Molchanov, y su función principal es "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ChatGPT Secure
Descarga archivos de extensión ChatGPT Secure 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
ChatGPT Secure is designed to protect users from the potential copy-pasting of sensitive information to ChatGPT. Also, it prevents potential content hijacking attacks via prompt injection. If you have any feedback or suggestions feel free to contact me via [email protected]
Información Básica de la Extensión
Nombre | ChatGPT Secure |
ID | hodneljnifpbcnhmlommhmmpoknlioil |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil |
Descripción | Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/ |
Tamaño del Archivo | 17.64 KB |
Cantidad de Instalaciones | 88 |
Versión Actual | 1.0 |
Última Actualización | 2023-05-05 |
Fecha de Publicación | 2023-03-28 |
Calificación | 5.00/5 Total de 7 Calificaciones |
Desarrollador | Yevhenii Molchanov |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Secure", "version": "1.0", "description": "Prevents sensitive information disclosure and protects from content hijacking attack on https:\/\/chat.openai.com\/", "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16x16.png", "48": "icon32x32.png", "128": "icon150x150.png" } }, "icons": { "16": "icon16x16.png", "48": "icon32x32.png", "128": "icon150x150.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ] } |