ChatGPT Secure
Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
Co to jest ChatGPT Secure?
ChatGPT Secure to rozszerzenie Chrome opracowane przez Yevhenii Molchanov, a jego główną funkcją jest „Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChatGPT Secure
Pobierz pliki rozszerzeń ChatGPT Secure w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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]
Podstawowe informacje o rozszerzeniu
Nazwa | ChatGPT Secure |
ID | hodneljnifpbcnhmlommhmmpoknlioil |
Oficjalny URL | https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil |
Opis | Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/ |
Rozmiar pliku | 17.64 KB |
Liczba instalacji | 88 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-05-05 |
Data Publikacji | 2023-03-28 |
Ocena | 5.00/5 Łącznie 7 Oceny |
Deweloper | Yevhenii Molchanov |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |