VoIPXS

VoIPXS

Recognise phone numbers and place a call button next to them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VoIPXS",
  "description": "__MSG_app_description__",
  "version": "3.1.1",
  "minimum_chrome_version": "41",
  "default_locale": "nl",
  "author": "Speak Freely",
  "homepage_url": "https://voipxs.nl/",
  "browser_action": {
    "default_icon": {
      "128": "img/icon-offline.png"
    },
    "default_popup": "popup.html",
    "default_title": "VoIPXS"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/parser.css"
      ],
      "js": [
        "js/jQuery.js",
        "js/libphonenumber.js",
        "js/parser.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/kernel.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "img/icon-online.png"
  }
}