Seeya Click to Dial Extension

Seeya Click to Dial Extension

Right click on a phone number and send it to Teams

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Seeya Click to Dial Extension",
  "version": "1.0",
  "description": "Right click on a phone number and send it to Teams",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/Seeya16.png",
      "32": "images/Seeya32.png",
      "48": "images/Seeya48.png",
      "128": "images/Seeya128.png"
    }
  },
  "icons": {
    "16": "images/Seeya16.png",
    "32": "images/Seeya32.png",
    "48": "images/Seeya48.png",
    "128": "images/Seeya128.png"
  },
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}