Click2Tel

Click2Tel

Click on "tel:" links to copy phone numbers to your clipboard and automatically paste them into the dialer's input field.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Click2Tel",
  "description": "Click on \"tel:\" links to copy phone numbers to your clipboard and automatically paste them into the dialer's input field.",
  "version": "2.00",
  "permissions": [
    "clipboardWrite"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "images/icon16.png",
    "19": "images/icon19.png",
    "32": "images/icon32.png",
    "38": "images/icon38.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}