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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dev และคุณลักษณะหลักของมันคือ "Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Click to Call by PhoneIQ
ดาวน์โหลดไฟล์ส่วนขยาย Click to Call by PhoneIQ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |