ChatGPT Code Downloader

ChatGPT Code Downloader

Adds a 'Create File' button to code containers on web pages, allowing you to download the code as a file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT Code Downloader",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "Adds a 'Create File' button to code containers on web pages, allowing you to download the code as a file.",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "clipboardRead"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}