ChatGPT Secure
Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
Τι είναι το ChatGPT Secure;
Το ChatGPT Secure είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yevhenii Molchanov, και η κύρια λειτουργία του είναι "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChatGPT Secure
Λήψη αρχείων επέκτασης ChatGPT Secure σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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]
Βασικές Πληροφορίες Επέκτασης
Όνομα | ChatGPT Secure |
ID | hodneljnifpbcnhmlommhmmpoknlioil |
Επίσημο URL | https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil |
Περιγραφή | Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/ |
Μέγεθος Αρχείου | 17.64 KB |
Αριθμός Εγκαταστάσεων | 88 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2023-05-05 |
Ημερομηνία Δημοσίευσης | 2023-03-28 |
Αξιολόγηση | 5.00/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | Yevhenii Molchanov |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |