Examine source code of Search ChatGPT

Inspect and view changes in Search ChatGPT source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Search ChatGPT",
  "version": "1.5",
  "description": "Search selected text, hyperlinks, or the current page using ChatGPT.",
  "author": "Jordan Fleschner",
  "homepage_url": "https://github.com/jfleschner/ContextGPT.git",
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Search ChatGPT",
    "default_icon": {
      "128": "icon-128.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{e968291d-82f7-4319-bf9b-7e8664f2405a}"
    }
  }
}