Jolt Select Dial PBX

Jolt Select Dial PBX

Make a PBX call from selected text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Jolt Select Dial PBX",
  "short_name": "Jolt Dial",
  "version": "1.7.2",
  "manifest_version": 2,
  "description": "Make a PBX call from selected text",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "img/icon128.png",
    "default_popup": "popup.html",
    "default_title": "JOLT PBX Dial"
  },
  "background": {
    "scripts": [
      "js/jquery-1.8.0.min.js",
      "js/bg.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/fg.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "*://*/*"
  ]
}