Click-to-Call for Web and CRM

Click to Call dialing from web pages, integration with any softphone, screen pops in Salesforce and other CRMs
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_short_name__",
  "description": "__MSG_extension_description__",
  "author": "__MSG_extension_author__",
  "version": "4.0.17",
  "default_locale": "en",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "icons": {
    "128": "/img/icon128.png"
  },
  "omnibox": {
    "keyword": "call"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*",
        "/html/*",
        "/lib/*",
        "/css/*",
        "/js/*",
        "/_locales/*",
        "/_locales/*/*",
        "/fonts/*",
        "/fonts/icons/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "19": "/img/icon19.png",
      "38": "/img/icon38.png"
    },
    "default_title": "__MSG_action_button_title__",
    "default_popup": "/html/popup/alert.html"
  },
  "options_ui": {
    "page": "/html/options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "/js/service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*"
      ],
      "js": [
        "/js/content/thirdlane_connect_detector.js"
      ],
      "css": [],
      "all_frames": false,
      "run_at": "document_idle"
    }
  ],
  "offline_enabled": true,
  "permissions": [
    "contextMenus",
    "activeTab",
    "tabs",
    "alarms",
    "idle",
    "cookies",
    "notifications",
    "management",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*",
    "*://*/*"
  ],
  "optional_permissions": [],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; style-src * 'unsafe-inline';"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}