Star2Star Click to Dial
This extension detects phone numbers on web pages and enables them as links so when clicked will place the call via Star2Star.
Star2Star Click to Dial란 무엇입니까?
Star2Star Click to Dial은(는) Star2Star Communications에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension detects phone numbers on web pages and enables them as links so when clicked will place the call via Star2Star."입니다.
확장 프로그램 스크린샷
Star2Star Click to Dial 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension detects phone numbers on web pages and turns them into clickable links that will place a call to that number via your selectable Star2Star phone extension. You must have Star2Star voice service in order to use this browser extension. Please note: this service currently supports Business Voice extensions and local Business Voice+ extensions. However, remote Business Voice+ extensions are not supported at this time.
확장 프로그램 기본 정보
이름 | Star2Star Click to Dial |
ID | ffepfjpghijcklhhdpllpekffijbbhia |
공식 URL | https://chromewebstore.google.com/detail/star2star-click-to-dial/ffepfjpghijcklhhdpllpekffijbbhia |
설명 | This extension detects phone numbers on web pages and enables them as links so when clicked will place the call via Star2Star. |
파일 크기 | 32.02 KB |
설치 횟수 | 139 |
현재 버전 | 2.0.7 |
최근 업데이트 | 2022-03-07 |
출시 날짜 | 2021-03-28 |
개발자 | Star2Star Communications |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.star2star.com/ |
도움말 페이지 URL | https://knowledge.star2star.com/kb/2850 |
개인정보 보호 정책 페이지 URL | https://s2s-support-files.s3.amazonaws.com/legal/star2star-communications-llc-privacy-policies.pdf |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Star2Star Click to Dial", "short_name": "*2* Click-to-Dial", "version": "2.0.7", "description": "This extension detects phone numbers on web pages and enables them as links so when clicked will place the call via Star2Star.", "icons": { "16": "media\/icon16.png", "48": "media\/icon48.png", "128": "media\/icon128.png" }, "permissions": [ "management", "storage", "identity", "cookies", "https:\/\/auth-appdev.star2starglobal.net\/*", "https:\/\/cpaas-appdev.star2starglobal.net\/*", "https:\/\/auth.star2star.com\/*", "https:\/\/cpaas-api.star2star.com\/*", "https:\/\/*.chromiumapp.org\/" ], "web_accessible_resources": [ "media\/icon16.png" ], "background": { "persistent": true, "page": "background.html" }, "browser_action": { "default_icon": "media\/icon16.png", "default_popup": "views\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ] } ] } |