Click to Call by PhoneIQ

Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ

¿Qué es Click to Call by PhoneIQ?

Click to Call by PhoneIQ es una extensión de Chrome desarrollada por dev, y su función principal es "Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Click to Call by PhoneIQ

Descarga archivos de extensión Click to Call by PhoneIQ en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        The PhoneIQ Click to Dial extension enables users to initiate outbound phone calls via PhoneIQ’s desktop app by just clicking on phone numbers within Salesforce. 

PhoneIQ is a new breed of cloud based contact center & unified communications software designed and built for companies using Salesforce. Unlike traditional telephony and call center solutions, PhoneIQ is fully integrated with the Salesforce platform, leveraging data within the CRM and AI to radically change the way business communications work.                    

Información Básica de la Extensión

Nombre Click to Call by PhoneIQ Click to Call by PhoneIQ
ID lgeeknebmmlolagoalmhminclogblcfb
URL Oficial https://chromewebstore.google.com/detail/click-to-call-by-phoneiq/lgeeknebmmlolagoalmhminclogblcfb
Descripción Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ
Tamaño del Archivo 53.45 KB
Cantidad de Instalaciones 50
Versión Actual 2.0.0
Última Actualización 2024-02-15
Fecha de Publicación 2020-03-16
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador dev
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.phoneiq.co/
URL de la Página de Ayuda https://help.phoneiq.co/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click to Call by PhoneIQ",
    "version": "2.0.0",
    "manifest_version": 3,
    "description": "Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "contentscript.js"
    ],
    "page_action": {
        "default_icon": "phoneiq_logo.png",
        "default_title": "PhoneIQ Click to Call"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/mail.google.com\/*",
                "http:\/\/mail.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-1.4.4.min.js",
                "jquery.ba-replacetext.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "phoneiq_logo.png",
        "48": "phoneiq_logo.png",
        "128": "phoneiq_logo.png"
    },
    "permissions": [
        "activeTab"
    ]
}