Examine source code of CopyTool

Inspect and view changes in CopyTool 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": "CopyTool",
  "version": "1.0",
  "description": "",
  "icon": "icon.png",
  "permissions": [
    "activeTab",
    "clipboardRead",
    "clipboardWrite",
    "tabs"
  ],
  "sidebar_action": {
    "default_panel": "sidebar.html",
    "browser_style": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "48": "icon.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{59996722-484e-42c6-a322-10994d977bfa}"
    }
  }
}