TVox 24 Click to Call

TVox 24 Click to Call

Compatible with TVox 24 or newer. Click on phone numbers to call them through the TVox Client

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "3.0",
  "default_locale": "en",
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "static/images/logo.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "static/images/logo.png",
    "48": "static/images/logo.png",
    "128": "static/images/logo.png",
    "256": "static/images/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/content_script.js"
      ],
      "css": [
        "css/content_script.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/tvox_page_content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}