ChatGPT Conversation History Search

ChatGPT Conversation History Search

Search your ChatGPT conversation history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "ChatGPT Conversation History Search",
  "version": "1.1",
  "description": "Search your ChatGPT conversation history",
  "action": {
    "default_popup": "search/search.html",
    "default_icon": {
      "48": "icons/icon48.png"
    }
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "https://chat.openai.com/*"
  ],
  "background": {
    "type": "module",
    "service_worker": "helpers/background.js"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}