ChatGPT Secure

Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/

What is ChatGPT Secure?

ChatGPT Secure is a Chrome extension developed by Yevhenii Molchanov, and its main feature is "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/".

Extension Screenshots

screenshot

Download ChatGPT Secure Extension CRX File

Download ChatGPT Secure extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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]                    

Extension Basic Information

Name ChatGPT Secure ChatGPT Secure
ID hodneljnifpbcnhmlommhmmpoknlioil
Official URL https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil
Description Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
File Size 17.64 KB
Installation Count 88
Current Version 1.0
Last Updated 2023-05-05
Publish Date 2023-03-28
Rating 5.00/5 Total 7 Ratings
Developer Yevhenii Molchanov
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}