FancyGPT

FancyGPT

Save and share beautiful ChatGPT snippets as images, PDFs, and text files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FancyGPT",
  "description": "Save and share beautiful ChatGPT snippets as images, PDFs, and text files.",
  "version": "1.1.10",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/"
      ],
      "js": [
        "popup.js"
      ]
    }
  ]
}