Evolux Click2Call

Evolux Click2Call

This extension shows a call button for every phone number in the current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Evolux Click2Call",
  "description": "This extension shows a call button for every phone number in the current page",
  "version": "2.0.8",
  "action": {
    "default_icon": "img/evolux-icon.png",
    "default_popup": "config.html",
    "default_title": "Configurações do Evolux Click2Call"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "clickToCall.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/evolux-icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}