FusionPBX SelectToCall
Select phone numbers and right click to call
什麼是FusionPBX SelectToCall?
FusionPBX SelectToCall是由https://robin.mulloy.ca開發的Chrome擴展程式,該擴展的主要功能是“Select phone numbers and right click to call”。
擴展截圖
下載FusionPBX SelectToCall擴展crx文件
下載FusionPBX SelectToCall擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | FusionPBX SelectToCall |
ID | ghcmfikimieoeehcbgbdeegkgmpaihgg |
官方網址 | https://chromewebstore.google.com/detail/fusionpbx-selecttocall/ghcmfikimieoeehcbgbdeegkgmpaihgg |
簡介 | Select phone numbers and right click to call |
檔案大小 | 38.72 KB |
安裝次數 | 736 |
目前版本 | 2.20.1118 |
更新時間 | 2020-11-20 |
上架時間 | 2019-03-03 |
評分 | 5.00/5 共 3 次評分 |
開發者 | https://robin.mulloy.ca |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://robin.mulloy.ca/select-to-call-makes-calling-so-easy/ |
隱私政策頁面URL | https://robin.mulloy.ca/privacy-policy |
支援的語言 | 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" } } |