Copy Mailto

Copy Mailto

An extension to copy email and telephone links from the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Mailto",
  "version": "1.0",
  "description": "An extension to copy email and telephone links from the web.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png",
      "144": "images/icon-144.png",
      "192": "images/icon-192.png"
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png",
    "144": "images/icon-144.png",
    "192": "images/icon-192.png"
  }
}