Zoom Phone For Outreach
Zoom Phone For Outreach
What is Zoom Phone For Outreach?
Zoom Phone For Outreach is a Chrome extension developed by https://zoom.us, and its main feature is "Zoom Phone For Outreach".
Extension Screenshots
Download Zoom Phone For Outreach Extension CRX File
Download Zoom Phone For Outreach extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension enables the Zoom phone based communication inside outreach application. The outreach application user can use Zoom phone to make and receive phone call.
Extension Basic Information
Name | Zoom Phone For Outreach |
ID | pcidanpimdgppoffjgbknephlpehfmfb |
Official URL | https://chromewebstore.google.com/detail/zoom-phone-for-outreach/pcidanpimdgppoffjgbknephlpehfmfb |
Description | Zoom Phone For Outreach |
File Size | 94.48 KB |
Installation Count | 4,234 |
Current Version | 0.1.4 |
Last Updated | 2023-09-03 |
Publish Date | 2022-12-14 |
Rating | 2.00/5 Total 2 Ratings |
Developer | https://zoom.us |
[email protected] | |
Payment Type | free |
Extension Website | https://zoom.us/ |
Privacy Policy Page URL | https://zoom.us/privacy |
Supported Languages | en |
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:\/\/*\/*" ] } ] } |