Labelcall - Business Caller Id

Labelcall - Business Caller Id

Chrome extension integrated with Labelcall app that shows caller data in the notifications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Labelcall - Business Caller Id",
  "description": "Chrome extension integrated with Labelcall app that shows caller data in the notifications.",
  "version": "1.1",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/vendor.js",
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "notifications",
    "<all_urls>"
  ]
}