Monmouth Telecom Click-To-Dial

Monmouth Telecom Click-To-Dial

This extension enables Click-To-Dial from the chrome web-browser for Monmouth Telecom Hosted PBX Customers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Monmouth Telecom Click-To-Dial",
  "description": "This extension enables Click-To-Dial from the chrome web-browser for Monmouth Telecom Hosted PBX Customers.",
  "version": "1.0.0.6",
  "browser_action": {
    "default_icon": "img/disabled_icon.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "jquery-1.11.3.min.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "content_scripts": [
    {
      "js": [
        "linkify_tns.js",
        "jquery-1.11.3.min.js"
      ],
      "css": [
        "clicktodial.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "https://ajax.googleapis.com/"
  ]
}