Bellen met Microsoft Teams

Bellen met Microsoft Teams

This Infradax extension turns normal phone numbers on websites into links so they can be opened with Microsoft Teams.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "This Infradax extension turns normal phone numbers on websites into links so they can be opened with Microsoft Teams.",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "manifest_version": 2,
  "name": "Bellen met Microsoft Teams",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "version": "2021.8.5.0"
}