Zoom Phone For Outreach

Zoom Phone For Outreach

Zoom Phone For Outreachคืออะไร?

Zoom Phone For Outreach เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://zoom.us และคุณลักษณะหลักของมันคือ "Zoom Phone For Outreach"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Zoom Phone For Outreach

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/*"
            ]
        }
    ]
}