Examine source code of Convert ChatGPT to Google Doc, Microsoft Word, Notion, Slack

Inspect and view changes in Convert ChatGPT to Google Doc, Microsoft Word, Notion, Slack source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Convert ChatGPT to Google Doc, Microsoft Word, Notion, Slack",
  "version": "1.4",
  "description": "Convert ChatGPT response (Rich format text, images, tables) to Google doc, Microsoft word, Notion, Slack with 1 click.",
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "identity",
    "identity.email",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*"
      ],
      "js": [
        "js/turndown.js",
        "js/coachmark.js",
        "js/announcement.js",
        "js/content.js"
      ],
      "css": [
        "css/styles.css",
        "css/multi-select-bar.css",
        "css/tooltip.css",
        "css/coachmark.css",
        "css/announcement.css"
      ]
    },
    {
      "matches": [
        "https://docs.google.com/*"
      ],
      "js": [
        "js/doc.js"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv3a1ReqFoXzruqyghR4y64Q5qzycVBMIm28QMxLYsWVggyc9iR4FiBsL2A6Pyd3DTSDaU+SY+ZkbSnvCWfC5QNLmc/If9AUdhyXf6sXdqrQ+UPJCg0yxnUvmcrauhnwoiZaH+U5oy+cI/lvqB+h18ee6XiyE4IK4S/aud6IAsErvJfV/dadEkjnAZuhL9BtEZRpWuxr4DngBD09qSqK7x0Py8qGiDsHncnOfJJbBRRCq2xS4UtVpIZIo9IjDTZNMkhnaD1SxsSfSGPtMlygLP+49++dlQLmqutzWVtBHdtv9aijJyNriWwFy9/0PMGVmZcqhUs9Q4tXY+BqjfVRJfwIDAQAB",
  "oauth2": {
    "client_id": "349481465252-13hl5bdrr7r6oqhbf8mlu9sh0ngc2q4t.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "assets/select-all.svg",
        "assets/close-btn.svg",
        "assets/copy-selected.svg",
        "assets/create-doc.svg",
        "assets/check.svg",
        "assets/copy.svg",
        "assets/create.svg",
        "assets/multi-select.svg",
        "assets/createDocLoading.mov",
        "assets/createBatchDoc.gif",
        "assets/darkCreateDocLoading.mov",
        "fonts/Satoshi-Variable.ttf",
        "assets/tick.png"
      ],
      "matches": [
        "https://chatgpt.com/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  }
}