Copy URL

Copy URL

Extension for the correct copying of URL address.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "128": "img/icon.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "page_action": {
    "default_icon": {
      "128": "img/icon.png"
    },
    "default_title": "__MSG_button_title__"
  },
  "permissions": [
    "clipboardWrite",
    "activeTab"
  ],
  "short_name": "copyurl",
  "version": "1.0.0"
}