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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Click to Call by PhoneIQ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |