AVOXI Genius Click-to-Call

AVOXI Genius Click-to-Call

Click to call

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AVOXI Genius Click-to-Call",
  "description": "Click to call",
  "permissions": [
    "storage",
    "tabs"
  ],
  "version": "1.1.9",
  "manifest_version": 2,
  "icons": {
    "16": "/images/brain_on_16.png",
    "48": "/images/brain_on_48.png",
    "128": "/images/brain_on_128.png"
  },
  "background": {
    "scripts": [
      "/js/constants.js",
      "/js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/constants.js",
        "/js/numbers.js",
        "/js/customSites.js",
        "/js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "/images/brain_on_128.png",
    "default_popup": "/html/popup.html"
  },
  "options_ui": {
    "page": "/html/options.html",
    "open_in_tab": false
  }
}