ChatGPT Prompt Link

ChatGPT Prompt Link

Appends text to the prompt textarea on OpenAI Chat with urls using: https://chat.openai.com/?prompt=Hello+World

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Prompt Link",
  "version": "1.16",
  "description": "Appends text to the prompt textarea on OpenAI Chat with urls using: https://chat.openai.com/?prompt=Hello+World",
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://prompt-linker.pages.dev/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon_16x16.png",
    "128": "icon_128x128.png"
  }
}