Zoom Phone For Outreach

Zoom Phone For Outreach

什么是Zoom Phone For Outreach?

Zoom Phone For Outreach是由https://zoom.us开发的Chrome扩展程序,该扩展的主要功能是“Zoom Phone For Outreach”。

扩展截图

screenshot

下载Zoom Phone For Outreach扩展crx文件

下载Zoom Phone For Outreach扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Zoom Phone For Outreach Zoom Phone For Outreach
ID pcidanpimdgppoffjgbknephlpehfmfb
官方URL https://chromewebstore.google.com/detail/zoom-phone-for-outreach/pcidanpimdgppoffjgbknephlpehfmfb
简介 Zoom Phone For Outreach
文件大小 94.48 KB
安装次数 4,234
当前版本 0.1.4
更新时间 2023-09-03
上架时间 2022-12-14
评分 2.00/5 共2次评分
开发者 https://zoom.us
电子邮箱 [email protected]
付费类型 free
扩展官网 https://zoom.us/
隐私政策页面URL https://zoom.us/privacy
支持的语言 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:\/\/*\/*"
            ]
        }
    ]
}