ChatGPT Secure

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

Qu'est-ce que ChatGPT Secure ?

ChatGPT Secure est une extension Chrome développée par Yevhenii Molchanov, et sa fonction principale est "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ChatGPT Secure

Téléchargez les fichiers d'extension ChatGPT Secure au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom ChatGPT Secure ChatGPT Secure
ID hodneljnifpbcnhmlommhmmpoknlioil
URL Officiel https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil
Description Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
Taille du Fichier 17.64 KB
Nombre d'Installations 88
Version Actuelle 1.0
Dernière Mise à Jour 2023-05-05
Date de Publication 2023-03-28
Évaluation 5.00/5 Total 7 Évaluations
Développeur Yevhenii Molchanov
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}