Zoom Phone For Outreach

Zoom Phone For Outreach

Co to jest Zoom Phone For Outreach?

Zoom Phone For Outreach to rozszerzenie Chrome opracowane przez https://zoom.us, a jego główną funkcją jest „Zoom Phone For Outreach”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Zoom Phone For Outreach

Pobierz pliki rozszerzeń Zoom Phone For Outreach w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Zoom Phone For Outreach Zoom Phone For Outreach
ID pcidanpimdgppoffjgbknephlpehfmfb
Oficjalny URL https://chromewebstore.google.com/detail/zoom-phone-for-outreach/pcidanpimdgppoffjgbknephlpehfmfb
Opis Zoom Phone For Outreach
Rozmiar pliku 94.48 KB
Liczba instalacji 4,234
Aktualna Wersja 0.1.4
Ostatnia Aktualizacja 2023-09-03
Data Publikacji 2022-12-14
Ocena 2.00/5 Łącznie 2 Oceny
Deweloper https://zoom.us
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://zoom.us/
Adres URL Strony Polityki Prywatności https://zoom.us/privacy
Obsługiwane Języki 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:\/\/*\/*"
            ]
        }
    ]
}