VoPhone Click2Call

VoPhone Click2Call

VoPhone Click2Call

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VoPhone Click2Call",
  "description": "VoPhone Click2Call",
  "version": "1.1.3",
  "manifest_version": 2,
  "default_locale": "en_US",
  "permissions": [
    "notifications",
    "background",
    "tabs",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "js/jquery.js",
    "js/jquery-2.0.3.min.map",
    "img/icon_128.png",
    "view/auth.html",
    "view/reset-password.html",
    "view/dashboard.html"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "img/icon_toolbar-off.png",
    "default_popup": "config.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' ",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.js",
        "js/linker.js"
      ],
      "css": [
        "css/linker.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  }
}