Ai4Privacy - Privacy feature for ChatGPT

Ai4Privacy - Privacy feature for ChatGPT

Ai4Privacy Extension helps protect personal data with ChatGPT AI interactions, anonymising sensitive info for secure AI usage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ai4Privacy - Privacy feature for ChatGPT",
  "version": "2.0.2",
  "description": "Ai4Privacy Extension helps protect personal data with ChatGPT AI interactions, anonymising sensitive info for secure AI usage.",
  "minimum_chrome_version": "116",
  "action": {
    "default_icon": "./assets/normal_128.png",
    "default_popup": "./dist/popup/index.html"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "icons": {
    "128": "./assets/normal_128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://chat.openai.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "dist/contentScripts/index.global.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "models/*",
        "dist/contentScripts/style.css"
      ],
      "matches": [
        "*://chat.openai.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  }
}