Examine source code of ChatGPT Query

Inspect and view changes in ChatGPT Query 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": "ChatGPT Query",
  "description": "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.",
  "version": "1.0.5",
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{fd5ac699-29e5-4256-bfa5-1c8fe7a1977c}"
    }
  }
}