FOP2 Extension

FOP2 Extension

FOP2 lets you monitor your Asterisk PBX extension status, launch popups and add click to call capabilites to any web page/app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FOP2 Extension",
  "version": "1.2.1",
  "manifest_version": 2,
  "description": "FOP2 lets you monitor your Asterisk PBX extension status, launch popups and add click to call capabilites to any web page/app.",
  "omnibox": {
    "keyword": "fop2"
  },
  "browser_action": {
    "default_icon": "images/telephone19.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "19": "images/telephone19.png",
    "48": "images/telephone48.png",
    "128": "images/telephone128.png"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "deflate.js",
      "base64.js",
      "md5.js",
      "animator.js",
      "lang.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "css": [
        "css/content_script.css"
      ],
      "js": [
        "jquery.js",
        "content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/telephone19.png"
  ],
  "permissions": [
    "<all_urls>",
    "notifications",
    "contextMenus"
  ]
}