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
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}