Zoom Phone For Outreach

Zoom Phone For Outreach

Zoom Phone For Outreach

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zoom Phone For Outreach",
  "description": "Zoom Phone For Outreach",
  "version": "0.1.4",
  "manifest_version": 3,
  "icons": {
    "16": "./images/zoom_phone_small.png",
    "32": "./images/zoom_phone_small.png",
    "48": "./images/zoom_phone_small.png",
    "128": "./images/zoom_phone_big.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icons": {
      "16": "./images/zoom_phone_small.png",
      "32": "./images/zoom_phone_small.png",
      "48": "./images/zoom_phone_small.png",
      "128": "./images/zoom_phone_small.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://127.0.0.1/*",
        "https://*.outreach.io/*"
      ],
      "exclude_matches": [
        "https://accounts.outreach.io/*",
        "https://support.outreach.io/*",
        "https://api.outreach.io/*"
      ],
      "all_frames": true,
      "css": [],
      "js": [
        "listener.js"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "webNavigation"
  ],
  "host_permissions": [
    "http://127.0.0.1/*",
    "https://*.outreach.io/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}