ChatGPT - Auto-continue Generating

ChatGPT - Auto-continue Generating

A simple extension that let ChatGPT to auto-continue generating text when the button appear.

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 - Auto-continue Generating",
  "version": "1.0",
  "description": "A simple extension that let ChatGPT to auto-continue generating text when the button appear.",
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "icons": {
    "128": "images/icon128.png"
  }
}