Quick Copy URL

Quick Copy URL

Quickly copy the URL of your current tab with a click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Quick Copy URL",
  "version": "1.3",
  "description": "Quickly copy the URL of your current tab with a click",
  "homepage_url": "https://github.com/vantezzen/quick-copy-url",
  "icons": {
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png"
  },
  "permissions": [
    "activeTab",
    "clipboardWrite"
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png"
    },
    "default_title": "Copy URL",
    "default_popup": "popup/index.html"
  },
  "background": {
    "scripts": [
      "background/main.js"
    ]
  },
  "commands": {
    "copy-url": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "Copy the URL of your current tab"
    }
  }
}