Simotel Click2dial chrome extension

Simotel Click2dial chrome extension

Use context menu to call with Simotel

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Simotel Click2dial chrome extension",
  "description": "Use context menu to call with Simotel",
  "version": "2.0",
  "manifest_version": 2,
  "options_page": "index.html",
  "permissions": [
    "notifications",
    "contextMenus",
    "storage",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "js/simotel.js",
      "js/background.js",
      "js/jquery.min.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/simotel.js",
        "js/jquery.min.js",
        "js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "index.html"
  },
  "icons": {
    "32": "images/simotel32.png",
    "64": "images/simotel64.png",
    "128": "images/simotel128.png"
  }
}