Prompt Firewall: ChatGPT Data Leak Prevention

Prompt Firewall: ChatGPT Data Leak Prevention

ChatGPT Data Leak Prevention (DLP) : Safeguard Sensitive Information and Protect Your Privacy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Prompt Firewall: ChatGPT Data Leak Prevention",
  "description": "ChatGPT Data Leak Prevention (DLP) : Safeguard Sensitive Information and Protect Your Privacy",
  "version": "0.0.10",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://chat.openai.com/*",
    "https://chatgpt.com/*"
  ],
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "style.css"
      ]
    }
  ]
}