ChatGPT Query

ChatGPT Query

The extension adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.

Merlin
Additional files are visible only to premium users

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}"
    }
  }
}