ChatGPT Sharer

ChatGPT Sharer

This extension puts a small share icon into ChatGPT conversation page, it can grab the conversation history and save as an image,…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT Sharer",
  "description": "",
  "version": "1.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "img/logo-16.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "action": {
    "default_icon": "img/logo-48.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.chunk-60c2c644.4de2448c.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "resources": [
        "img/logo-16.png",
        "img/logo-48.png",
        "img/logo-128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "resources": [
        "assets/chunk-2a619730.js",
        "assets/chunk-ba696e2b.js",
        "assets/chunk-7c790a7c.js",
        "assets/chunk-60c2c644.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [],
  "host_permissions": [
    "https://chat.openai.com/"
  ]
}