editGPT

editGPT

Easily proofread, edit, and track changes to your content in ChatGPT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "browser_style": true,
    "default_title": "Window manipulator",
    "default_popup": "window.html",
    "default_icon": {
      "19": "icons/w19.png",
      "38": "icons/w38.png"
    }
  },
  "icons": {
    "48": "icons/icon48.png",
    "96": "icons/w96.png"
  },
  "homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/window-manipulator",
  "manifest_version": 2,
  "name": "editGPT",
  "version": "1.0.21",
  "description": "Easily proofread, edit, and track changes to your content in ChatGPT.",
  "permissions": [
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*"
      ],
      "js": [
        "inject.js"
      ],
      "css": [
        "css/inject.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{8f6943bd-b9fa-4c13-855c-d1423f8bc0f3}"
    }
  }
}