Anywhere GPT

Anywhere GPT

The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Anywhere GPT",
  "description": "The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.",
  "version": "1.2",
  "manifest_version": 3,
  "action": {
    "default_title": "Configure AnywhereGPT"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/chat*"
      ],
      "run_at": "document_end",
      "js": [
        "./inject-prompt.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.global.js"
  },
  "icons": {
    "16": "chatgpt.png",
    "48": "chatgpt.png",
    "128": "chatgpt.png"
  },
  "options_ui": {
    "page": "settings/index.html"
  }
}