Examine source code of copy_url

Inspect and view changes in copy_url 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": "copy_url",
  "version": "1.0",
  "description": "Click icon to paste URL to clipboard",
  "icons": {
    "48": "icons/c_48.png"
  },
  "permissions": [
    "tabs",
    "clipboardWrite"
  ],
  "page_action": {
    "default_icon": "icons/c_32.png",
    "default_title": "Copy!",
    "show_matches": [
      "*://*/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{e99244aa-b08a-4162-8188-1eacf38d284b}"
    }
  }
}