Examine source code of Monmouth Telecom Click-To-Dial

Inspect and view changes in Monmouth Telecom Click-To-Dial source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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.5",
  "browser_action": {
    "default_icon": "img/disabled_icon.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "jquery-3.2.1.min.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "content_scripts": [
    {
      "js": [
        "linkify_tns.js",
        "jquery-3.2.1.min.js"
      ],
      "css": [
        "clicktodial.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ],
  "permissions": [
    "activeTab",
    "webNavigation",
    "storage",
    "https://ajax.googleapis.com/",
    "https://hosted.monmouth.com/contacts/call"
  ]
}