FusionPBX SelectToCall

Select phone numbers and right click to call

¿Qué es FusionPBX SelectToCall?

FusionPBX SelectToCall es una extensión de Chrome desarrollada por https://robin.mulloy.ca, y su función principal es "Select phone numbers and right click to call".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión FusionPBX SelectToCall

Descarga archivos de extensión FusionPBX SelectToCall 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

                        Implements a FusionPBX specific 'Select to Call' for phone numbers.  

If you are using the FusionPBX server for VOIP calling, this extension allows you to simply select any phone number on a browsed web page. Then after a right click it adds "Dial " to the context menu.  

Upon selecting the option, the phone number is passed to your VOIP extension which rings. Once you answer the ringing phone the PBX will call the clicked number for you.

The code is released under a BSD license and all code is available.

Updates:
March 2019 - changed option auto-answer=true
November 2020 - added auto-answer as config option

Source code is here:
https://github.com/gizmobin/FusionPBX-SelectToCall                    

Información Básica de la Extensión

Nombre FusionPBX SelectToCall FusionPBX SelectToCall
ID ghcmfikimieoeehcbgbdeegkgmpaihgg
URL Oficial https://chromewebstore.google.com/detail/fusionpbx-selecttocall/ghcmfikimieoeehcbgbdeegkgmpaihgg
Descripción Select phone numbers and right click to call
Tamaño del Archivo 38.72 KB
Cantidad de Instalaciones 736
Versión Actual 2.20.1118
Última Actualización 2020-11-20
Fecha de Publicación 2019-03-03
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://robin.mulloy.ca
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://robin.mulloy.ca/select-to-call-makes-calling-so-easy/
URL de la Página de Política de Privacidad https://robin.mulloy.ca/privacy-policy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FusionPBX SelectToCall",
    "version": "2.20.1118",
    "description": "Select phone numbers and right click to call",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "128": "images\/icon128.png"
        },
        "default_title": "FusionPBX SelectToCall"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "images\/icon128.png"
    }
}