Zoom Phone For Outreach

Zoom Phone For Outreach

Cos'è Zoom Phone For Outreach?

Zoom Phone For Outreach è un'estensione di Chrome sviluppata da https://zoom.us, e la sua funzione principale è "Zoom Phone For Outreach".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Zoom Phone For Outreach

Scarica i file di estensione Zoom Phone For Outreach in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Zoom Phone For Outreach Zoom Phone For Outreach
ID pcidanpimdgppoffjgbknephlpehfmfb
URL Ufficiale https://chromewebstore.google.com/detail/zoom-phone-for-outreach/pcidanpimdgppoffjgbknephlpehfmfb
Descrizione Zoom Phone For Outreach
Dimensione del File 94.48 KB
Conteggio Installazioni 4,234
Versione Corrente 0.1.4
Ultimo Aggiornamento 2023-09-03
Data di Pubblicazione 2022-12-14
Valutazione 2.00/5 Totale 2 Valutazioni
Sviluppatore https://zoom.us
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://zoom.us/
URL della Pagina della Politica sulla Privacy https://zoom.us/privacy
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}