FusionPBX SelectToCall
Select phone numbers and right click to call
Cos'è FusionPBX SelectToCall?
FusionPBX SelectToCall è un'estensione di Chrome sviluppata da https://robin.mulloy.ca, e la sua funzione principale è "Select phone numbers and right click to call".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione FusionPBX SelectToCall
Scarica i file di estensione FusionPBX SelectToCall 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
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
Informazioni di Base sull'Estensione
Nome | FusionPBX SelectToCall |
ID | ghcmfikimieoeehcbgbdeegkgmpaihgg |
URL Ufficiale | https://chromewebstore.google.com/detail/fusionpbx-selecttocall/ghcmfikimieoeehcbgbdeegkgmpaihgg |
Descrizione | Select phone numbers and right click to call |
Dimensione del File | 38.72 KB |
Conteggio Installazioni | 736 |
Versione Corrente | 2.20.1118 |
Ultimo Aggiornamento | 2020-11-20 |
Data di Pubblicazione | 2019-03-03 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://robin.mulloy.ca |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://robin.mulloy.ca/select-to-call-makes-calling-so-easy/ |
URL della Pagina della Politica sulla Privacy | https://robin.mulloy.ca/privacy-policy |
Lingue Supportate | 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" } } |