IPFone Dialer for Google Chrome™

IPFone Dialer for Google Chrome™

A Google Chrome™ extension that provides IPFone telephony integration.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/bsft_logo_48x48.png",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "injected.css",
        "jquery-ui.css"
      ],
      "js": [
        "jquery.js",
        "jquery.base64.js",
        "contentscript.js",
        "xsiactions.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "A Google Chrome™ extension that provides IPFone telephony integration.",
  "icons": {
    "16": "images/bsft_logo_16x16.png",
    "48": "images/bsft_logo_48x48.png",
    "128": "images/bsft_logo_128x128.png"
  },
  "manifest_version": 2,
  "name": "IPFone Dialer for Google Chrome™",
  "omnibox": {
    "keyword": "-call"
  },
  "options_page": "options.html",
  "permissions": [
    "notifications",
    "tabs",
    "http://*/*",
    "https://*/*",
    "tts",
    "identity"
  ],
  "short_name": "IPFone Dialer",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.3",
  "web_accessible_resources": [
    "images/click2dial.png",
    "injected.js"
  ]
}