Click to Call by PhoneIQ
Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ
Click to Call by PhoneIQ란 무엇입니까?
Click to Call by PhoneIQ은(는) dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ"입니다.
확장 프로그램 스크린샷
Click to Call by PhoneIQ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The PhoneIQ Click to Dial extension enables users to initiate outbound phone calls via PhoneIQ’s desktop app by just clicking on phone numbers within Salesforce. PhoneIQ is a new breed of cloud based contact center & unified communications software designed and built for companies using Salesforce. Unlike traditional telephony and call center solutions, PhoneIQ is fully integrated with the Salesforce platform, leveraging data within the CRM and AI to radically change the way business communications work.
확장 프로그램 기본 정보
이름 | Click to Call by PhoneIQ |
ID | lgeeknebmmlolagoalmhminclogblcfb |
공식 URL | https://chromewebstore.google.com/detail/click-to-call-by-phoneiq/lgeeknebmmlolagoalmhminclogblcfb |
설명 | Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ |
파일 크기 | 53.45 KB |
설치 횟수 | 50 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2024-02-15 |
출시 날짜 | 2020-03-16 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.phoneiq.co/ |
도움말 페이지 URL | https://help.phoneiq.co/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Click to Call by PhoneIQ", "version": "2.0.0", "manifest_version": 3, "description": "Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "web_accessible_resources": [ "contentscript.js" ], "page_action": { "default_icon": "phoneiq_logo.png", "default_title": "PhoneIQ Click to Call" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/mail.google.com\/*", "http:\/\/mail.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery-1.4.4.min.js", "jquery.ba-replacetext.min.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": true } ], "icons": { "16": "phoneiq_logo.png", "48": "phoneiq_logo.png", "128": "phoneiq_logo.png" }, "permissions": [ "activeTab" ] } |