Click To Call Chrome Extension

Click To Call Chrome Extension

This chrome extension use for click to call any number from chrome browser developed by TechExtension (www.techextension.com).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Click To Call Chrome Extension",
  "short_name": "Click To Call",
  "description": "This chrome extension use for click to call any number from chrome browser developed by TechExtension (www.techextension.com).",
  "version": "4.8",
  "action": {
    "default_icon": "icon-phone.png",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "*://*/"
  ],
  "permissions": [
    "scripting",
    "contextMenus",
    "storage"
  ],
  "icons": {
    "16": "icon-phone.png",
    "48": "icon-phone.png",
    "128": "icon-phone.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/icon-phone.png",
        "js/jquery.js",
        "js/content_page.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.js",
        "js/content_page.js"
      ],
      "css": [
        "css/content_page.css"
      ],
      "html": [
        "options.html"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}