ChatGPT Batch Delete History Manager

ChatGPT Batch Delete History Manager

ChatGPT Batch Delete History Manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "ChatGPT Batch Delete History Manager",
  "version": "2.1.4",
  "description": "ChatGPT Batch Delete History Manager",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAh8SemwpFVDoTWSJWyMD1lXIzLZ/zbVfgz3+RIHjOKtcBRe1tH1hwnP0Hv10KqBdJV5LY1WXD8upt1w3J0O+l26m2hGd340HnsCSnl8+zjyIvP5cs581DtWwXDGCwRqve8mbrwsBFkUVFrOkCZuOXGNL9aTTBTXLirakzSNjwWDX58R2da8nB5AFMEpEH5Yakkj1R0y+Z3ERToLQFs9i5ju6gfMEVJRglN4+B9VE+f5fyq+swFahwxuWuaz2Bam3LREz98D/kc1mDuwondHnwIdT6WFgxwJmCHgCU5EipGRZaHU1qf7JXGK8X/CnsZLl1vf2LewOZSCAfHvDV0IWsvwIDAQAB",
  "oauth2": {
    "client_id": "571085149187-4c33sprp91hik3r6c7ivhqe3p6i8cmf3.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "34.png"
  },
  "icons": {
    "34": "34.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*",
        "https://chat.openai.com/*"
      ],
      "js": [
        "src/pages/contentInjected/index.js"
      ],
      "css": [
        "assets/css/contentStyle1714789280684.chunk.css"
      ]
    },
    {
      "matches": [
        "https://chatgpt.com/*",
        "https://chat.openai.com/*"
      ],
      "js": [
        "src/pages/contentUI/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "windchat.png",
        "google.svg",
        "assets/css/*.css",
        "128.png",
        "34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}