Simotel Click2dial chrome extension
Use context menu to call with Simotel
Simotel Click2dial chrome extension란 무엇입니까?
Simotel Click2dial chrome extension은(는) Nasim Telecom에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use context menu to call with Simotel"입니다.
확장 프로그램 스크린샷
Simotel Click2dial chrome extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simotel Click2Dial chrome extension provide a simple way to send phone numbers to Simotel client apps. How to use: Select the any phone number you wish to call in chrome tabs, open context menu by right click and finally click on Simotel icon, calls send to your Simotel apps. Notice: This app is usable for Simotel PBX.
확장 프로그램 기본 정보
이름 | Simotel Click2dial chrome extension |
ID | bcmgcllckkknkmlkdlckejiedighncha |
공식 URL | https://chromewebstore.google.com/detail/simotel-click2dial-chrome/bcmgcllckkknkmlkdlckejiedighncha |
설명 | Use context menu to call with Simotel |
파일 크기 | 105 KB |
설치 횟수 | 284 |
현재 버전 | 2.0 |
최근 업데이트 | 2023-03-14 |
출시 날짜 | 2020-08-14 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | Nasim Telecom |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://simotel.com/ |
도움말 페이지 URL | https://simotel.com/contact/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simotel Click2dial chrome extension", "description": "Use context menu to call with Simotel", "version": "2.0", "manifest_version": 2, "options_page": "index.html", "permissions": [ "notifications", "contextMenus", "storage", "*:\/\/*\/*" ], "background": { "scripts": [ "js\/simotel.js", "js\/background.js", "js\/jquery.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/simotel.js", "js\/jquery.min.js", "js\/content.js" ] } ], "browser_action": { "default_popup": "index.html" }, "icons": { "32": "images\/simotel32.png", "64": "images\/simotel64.png", "128": "images\/simotel128.png" } } |