showGPT

showGPT

Allows you to save your ChatGPT conversation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "showGPT",
  "description": "Allows you to save your ChatGPT conversation",
  "version": "1.10",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png",
    "512": "512x512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "*://*.showgpt.co/"
  ]
}