TVox Click to Call

TVox Click to Call

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": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "2.2",
  "default_locale": "en",
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "browser_action": {},
  "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-3.4.1.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": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "<all_urls>",
    "notifications"
  ]
}