Share ChatGPT

Share ChatGPT

Enhance your ChatGPT experience by sharing chats with others in one click!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Share ChatGPT",
  "description": "Enhance your ChatGPT experience by sharing chats with others in one click!",
  "version": "1.0.2",
  "author": "Share ChatGPT",
  "icons": {
    "48": "icons/48.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "host_permissions": [
    "https://share.gpthacks.ai/"
  ]
}