FusionPBX SelectToCall

Select phone numbers and right click to call

Wat is FusionPBX SelectToCall?

FusionPBX SelectToCall is een Chrome-extensie ontwikkeld door https://robin.mulloy.ca, en de belangrijkste functie is "Select phone numbers and right click to call".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie FusionPBX SelectToCall

Download FusionPBX SelectToCall-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam FusionPBX SelectToCall FusionPBX SelectToCall
ID ghcmfikimieoeehcbgbdeegkgmpaihgg
Officiële URL https://chromewebstore.google.com/detail/fusionpbx-selecttocall/ghcmfikimieoeehcbgbdeegkgmpaihgg
Beschrijving Select phone numbers and right click to call
Bestandsgrootte 38.72 KB
Aantal Installaties 736
Huidige Versie 2.20.1118
Laatst Bijgewerkt 2020-11-20
Publicatiedatum 2019-03-03
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar https://robin.mulloy.ca
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://robin.mulloy.ca/select-to-call-makes-calling-so-easy/
URL van de Privacybeleid Pagina https://robin.mulloy.ca/privacy-policy
Ondersteunde Talen 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"
    }
}