ChatGPT Soliloquy

ChatGPT Soliloquy

ChatGPT-Soliloquy is a Chrome extension that allows ChatGPT to engage in a conversation with itself.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT Soliloquy",
  "description": "ChatGPT-Soliloquy is a Chrome extension that allows ChatGPT to engage in a conversation with itself.",
  "version": "1.2.0",
  "manifest_version": 3,
  "icons": {
    "16": "assets/logo.jpg",
    "32": "assets/logo.jpg",
    "48": "assets/logo.jpg",
    "128": "assets/logo.jpg"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "include_globs": [
        "*chat.openai.com/chat*"
      ],
      "js": [
        "chat-gpt-soliloquy.js"
      ]
    }
  ]
}