T-Mobile Essential - Who's Calling

T-Mobile Essential - Who's Calling

Call notifications for various communications platforms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.3.8",
  "default_locale": "en",
  "icons": {
    "48": "images/icon-48.png"
  },
  "browser_action": {
    "default_icon": "images/phone-call-icon-16-terminated.png",
    "default_title": "T-Mobile Essential - Who's Calling",
    "browser_style": true
  },
  "options_ui": {
    "page": "config.html"
  },
  "web_accessible_resources": [
    "js/*.js",
    "css/*.css",
    "images/*.png",
    "iframe.html"
  ],
  "content_scripts": [
    {
      "js": [
        "js/popup.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*.pdf",
        "*.PDF"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "https://crm.soluno.se/",
    "https://crmtest.pbxaddons.se/",
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "js/socket.io.slim.js",
      "js/background.js"
    ]
  }
}