Zoom Phone For Outreach
Zoom Phone For Outreach
Hvad er Zoom Phone For Outreach?
Zoom Phone For Outreach er en Chrome-udvidelse udviklet af https://zoom.us, og dens hovedfunktion er "Zoom Phone For Outreach".
Udvidelsesskærmbilleder
Download Zoom Phone For Outreach-udvidelses-CRX-fil
Download Zoom Phone For Outreach-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Zoom Phone For Outreach |
ID | pcidanpimdgppoffjgbknephlpehfmfb |
Officiel URL | https://chromewebstore.google.com/detail/zoom-phone-for-outreach/pcidanpimdgppoffjgbknephlpehfmfb |
Beskrivelse | Zoom Phone For Outreach |
Filstørrelse | 94.48 KB |
Antal Installationer | 4,234 |
Nuværende Version | 0.1.4 |
Senest Opdateret | 2023-09-03 |
Udgivelsesdato | 2022-12-14 |
Bedømmelse | 2.00/5 Samlet 2 Bedømmelser |
Udvikler | https://zoom.us |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://zoom.us/ |
URL til Fortrolighedspolitik Side | https://zoom.us/privacy |
Understøttede Sprog | 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:\/\/*\/*" ] } ] } |