Examine source code of stackcopy

Inspect and view changes in stackcopy 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
{
  "manifest_version": 2,
  "name": "StackCopy",
  "version": "2.0",
  "description": "Copy code snippets from any StackExchange site with ease.",
  "icons": {
    "48": "icons/icon.png",
    "96": "icons/icon@2.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.stackexchange.com/*",
        "*://askubuntu.com/*",
        "*://mathoverflow.net/*",
        "*://serverfault.com/*",
        "*://stackapps.com/*",
        "*://stackexchange.com/*",
        "*://stackoverflow.com/*",
        "*://superuser.com/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "permissions": [
    "clipboardWrite"
  ]
}