ClearVox Nexxt click to call

ClearVox Nexxt click to call

A extension that detects numbers on webpages and sends them to your clearvox on click

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_application_title__",
  "description": "__MSG_application_description__",
  "version": "1.13",
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": "icons/32.png",
    "default_popup": "popup/index.html",
    "default_title": "ClearVox click to call"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content_scripts/index.js",
        "content_scripts/components/clearvoxNumber.js",
        "content_scripts/components/clearvoxGrowler.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "content_scripts/contextMenu.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "contextMenus",
    "http://*/",
    "https://*/"
  ]
}