FusionPBX SelectToCall

Select phone numbers and right click to call

Qu'est-ce que FusionPBX SelectToCall ?

FusionPBX SelectToCall est une extension Chrome développée par https://robin.mulloy.ca, et sa fonction principale est "Select phone numbers and right click to call".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension FusionPBX SelectToCall

Téléchargez les fichiers d'extension FusionPBX SelectToCall au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom FusionPBX SelectToCall FusionPBX SelectToCall
ID ghcmfikimieoeehcbgbdeegkgmpaihgg
URL Officiel https://chromewebstore.google.com/detail/fusionpbx-selecttocall/ghcmfikimieoeehcbgbdeegkgmpaihgg
Description Select phone numbers and right click to call
Taille du Fichier 38.72 KB
Nombre d'Installations 736
Version Actuelle 2.20.1118
Dernière Mise à Jour 2020-11-20
Date de Publication 2019-03-03
Évaluation 5.00/5 Total 3 Évaluations
Développeur https://robin.mulloy.ca
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://robin.mulloy.ca/select-to-call-makes-calling-so-easy/
URL de la Page de Politique de Confidentialité https://robin.mulloy.ca/privacy-policy
Langues Prises en Charge 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"
    }
}