Zoom Phone For Outreach
Zoom Phone For Outreach
Zoom Phone For Outreach là gì?
Zoom Phone For Outreach là một tiện ích mở rộng Chrome được phát triển bởi https://zoom.us, và tính năng chính của nó là "Zoom Phone For Outreach".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Zoom Phone For Outreach
Tải xuống các tệp mở rộng Zoom Phone For Outreach dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Zoom Phone For Outreach |
ID | pcidanpimdgppoffjgbknephlpehfmfb |
URL Chính Thức | https://chromewebstore.google.com/detail/zoom-phone-for-outreach/pcidanpimdgppoffjgbknephlpehfmfb |
Mô tả | Zoom Phone For Outreach |
Kích Thước Tệp | 94.48 KB |
Số Lần Cài Đặt | 4,234 |
Phiên Bản Hiện Tại | 0.1.4 |
Cập Nhật Lần Cuối | 2023-09-03 |
Ngày Phát Hành | 2022-12-14 |
Đánh Giá | 2.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://zoom.us |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://zoom.us/ |
URL Trang Chính Sách Bảo Mật | https://zoom.us/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } ] } |