Tel Link - URL Caller

Tel Link - URL Caller

This allows you to place a call via a url. This is typically used with FreePBX with a Call.php script

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tel Link - URL Caller",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "This allows you to place a call via a url. This is typically used with FreePBX with a Call.php script",
  "homepage_url": "http://extensionizr.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/jquery/jquery.js",
        "js/background.js"
      ]
    }
  ],
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "options_ui": {
    "page": "src/options/index.html",
    "open_in_tab": false
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "browser action demo",
    "default_popup": "src/options/index.html"
  },
  "permissions": [
    "contentSettings",
    "storage",
    "<all_urls>"
  ]
}