ChatGPT Secure
Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
ChatGPT Secure क्या है?
ChatGPT Secure Yevhenii Molchanov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Secure एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 yevhsec1@gmail.com
एक्सटेंशन की मूल जानकारी
नाम | |
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 |
ईमेल | yevhsec1@gmail.com |
भुगतान के प्रकार | 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" ] } ] } |