Examine source code of Kavkom Click2Call

Inspect and view changes in Kavkom Click2Call source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Kavkom Click2Call",
  "description": "Searches for a phone numbers on web pages, allows to make calls by one click for logged in Kavkom Cloud PBX phone system users.",
  "version": "2.0",
  "manifest_version": 2,
  "icons": {
    "128": "img/favicon/favicon-32x32.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J",
        "mac": "Command+Shift+Y",
        "windows": "Ctrl+Shift+Y"
      }
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "vendors/mutation-summary.js",
        "content.bundle.js"
      ],
      "exclude_matches": [
        "*://webphone.kavkom.com/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*.png",
    "img/*.jpg",
    "img/*.svg"
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "128": "img/favicon/favicon-32x32.png"
    },
    "default_title": "KavKom Click2Call",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "browser_specific_settings": {
    "gecko": {
      "id": "{1b633cdc-ae66-45d0-b175-059f0b52f3f3}"
    }
  }
}