PhoneMondo - Cloud CallerID notification

PhoneMondo - Cloud CallerID notification

This extension connects your browser to your phone system via the PhoneMondo service

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "default_locale": "en",
  "version": "3.1.6",
  "name": "__MSG_appname__",
  "short_name": "PhoneMondo",
  "description": "__MSG_extensionDescription__",
  "author": "Scavix Software",
  "homepage_url": "https://www.phonemondo.com",
  "icons": {
    "24": "res/pm-24.png",
    "38": "res/pm-38.png",
    "48": "res/pm-48.png",
    "64": "res/pm-64.png",
    "128": "res/pm-128.png",
    "256": "res/pm-256.png",
    "512": "res/pm-512.png"
  },
  "browser_action": {
    "default_icon": "res/pm-38.png",
    "default_title": "PhoneMondo",
    "default_popup": "popup/login.html"
  },
  "background": {
    "scripts": [
      "js/browser-polyfill.js",
      "js/jquery.js",
      "js/phonemondo-api.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "popup/*.html",
    "js/*.js"
  ],
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "contextMenus"
  ],
  "commands": {
    "phonemondo_start_call": {
      "description": "__MSG_startcallshortcutdesc__",
      "suggested_key": {
        "default": "Alt+P"
      }
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      }
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{90ee9148-4112-485f-b0eb-a9f24af68758}"
    }
  }
}