Vodia Click to Dial

Vodia Click to Dial

Easy to use click-to-dial telephone numbers within the browser using your Vodia PBX account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Vodia Click to Dial",
  "version": "1.1",
  "description": "Make phone numbers on any page in Mozilla Firefox click to dial.",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://*.jquery.com; object-src 'self'",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/icon.png"
    },
    "default_title": "Vodia Phone",
    "default_popup": "settings.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.2.1.min.js",
        "clicktodial.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}