Examine source code of Copy2Clip Pass

Inspect and view changes in Copy2Clip Pass 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
{
  "name": "Copy2Clip Pass",
  "short_name": "Clip Pass",
  "version": "1.0.1",
  "description": "An Extension that will copy password from password fields to clipboard without making it visible.",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.4.1.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/logo16x16.png",
    "32": "images/logo32x32.png",
    "48": "images/logo48x48.png",
    "128": "images/logo128x128.png"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "images/*"
  ]
}