Cool-Telecom Click-to-call

Cool-Telecom Click-to-call

Select phone numbers and right click to call

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cool-Telecom Click-to-call",
  "version": "0.02.0005",
  "description": "Select phone numbers and right click to call",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "128": "images/icon128.png"
    },
    "default_title": "Cool-Telecom Click-to-call"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "128": "images/icon128.png"
  }
}