ChatGPT Secure
Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
Co je ChatGPT Secure?
ChatGPT Secure je rozšíření Chrome vyvinuté Yevhenii Molchanov, a jeho hlavní funkcí je „Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ChatGPT Secure
Stáhněte si soubory rozšíření ChatGPT Secure ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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]
Základní Informace o Rozšíření
Název | ChatGPT Secure |
ID | hodneljnifpbcnhmlommhmmpoknlioil |
Oficiální URL | https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil |
Popis | Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/ |
Velikost souboru | 17.64 KB |
Počet instalací | 88 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2023-05-05 |
Datum Vydání | 2023-03-28 |
Hodnocení | 5.00/5 Celkem 7 Hodnocení |
Vývojář | Yevhenii Molchanov |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } ] } |