Copy text with Alt-Click

Copy text with Alt-Click

Copy text with Alt-Click. Easy and fast copy tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy text with Alt-Click",
  "version": "2.1.0",
  "manifest_version": 2,
  "description": "Copy text with Alt-Click. Easy and fast copy tool.",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "@copy-text-without-selecting"
    }
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "clipboardWrite"
  ],
  "icons": {
    "48": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "menu.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}