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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |