gUnify Salesforce Connector AI
A cloud-based solution for Salesforce users who's hosted VOIP provider runs on the BroadWorks platform.
Что такое gUnify Salesforce Connector AI?
gUnify Salesforce Connector AI - это расширение Chrome, разработанное gUnify, и его основная функция - "A cloud-based solution for Salesforce users who's hosted VOIP provider runs on the BroadWorks platform.".
Снимки экрана расширения
Скачать файл CRX расширения gUnify Salesforce Connector AI
Скачайте файлы расширений gUnify Salesforce Connector AI в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
****************************** Note: You must have a confirmation code to use the features of this extension. Confirmation Codes can be obtained from your VoIP service provider running on the BroadWorks platform. ****************************** The gUnify Salesforce Connector AI is a cloud-based solution for Salesforce users whose hosted VOIP provider runs on the BroadWorks platform. The application automatically logs all incoming and outgoing call data, captures the user call notes, and records this information in Salesforce. The extension allows users to click-to-dial any number appearing in a Google Chrome browser and connects the call through their VoIP service provider. - Click to Call Click-to-dial any number appearing in a Google Chrome browser and connect the call through the VoIP service provider. - Automated Call Logging Automatically log all incoming and outgoing calls from VoIP service provider to Salesforce when the caller id or clicked number is matched to either a Salesforce contact or lead. - Incoming/Outbound Screen Pop Incoming screen pop with answer or decline and send to voicemail options. Call in progress screen pop with end call or open call log window options. Missed call screen pop with call back or call back and open call log window options. - Quick Add Phone Numbers to Salesforce Unrecognized numbers can be added to new or existing contacts, leads or accounts from the call log window. - Call Tagging and Note Taking Easy to use call tagging and note taking for all inbound/outbound calls, recorded in Salesforce contact, lead, or custom objects.. For calls to Salesforce contacts you have the option to associate the call to an Account, Case, and Opportunity as well. - Administrator Role for Account Wide Features Admins can enable features account wide:call logging for un-matched numbers in Salesforce, auto open call log window, minimum character limits in call notes, and customizable call noting subject structure. - Quick Access to Missed Calls and Calls not Logged The reports tab in the gUnify Panel allows users to quickly view and act on missed calls, calls not logged to Salesforce, and calls that associated the multiple Salesforce contacts. - Background App Ability gUnify Salesforce Connector AI can run in the background without any Chrome window or tab being open. Chrome will start running in the background when the system is restarted allowing screen pop notifications to work without user action For more information: https://businesssupport.vonage.com/articles/Answer/gUnify-Salesforce-Connector
Основная информация о расширении
Название | gUnify Salesforce Connector AI |
ID | fllpmnnphikdeefmmhmhbikpiiljfhme |
Официальный URL | https://chromewebstore.google.com/detail/gunify-salesforce-connect/fllpmnnphikdeefmmhmhbikpiiljfhme |
Описание | A cloud-based solution for Salesforce users who's hosted VOIP provider runs on the BroadWorks platform. |
Размер файла | 1.12 MB |
Количество установок | 363 |
Текущая Версия | 2022.614.1620.1 |
Последнее Обновление | 2022-07-05 |
Дата публикации | 2020-07-17 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | gUnify |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://www.gunify.com/site/Unified/Communications/Google/apps/salesforce_connector.html |
URL страницы помощи | http://support.gunify.com/guides/salesforce-connector-ai/ |
URL страницы политики конфиденциальности | https://www.vonage.com/privacy-policy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gUnify Salesforce Connector AI", "description": "A cloud-based solution for Salesforce users who's hosted VOIP provider runs on the BroadWorks platform.", "version": "2022.614.1620.1", "homepage_url": "http:\/\/www.gunify.com", "default_locale": "en", "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/app.vonage.com\/*", "https:\/\/app.nexvon.com\/*", "https:\/\/app.vocal-dev.com\/*", "https:\/\/*.app.vocal-dev.com\/*", "https:\/\/app.qa5.vocal-qa.com\/*", "https:\/\/app.qa6.vocal-qa.com\/*", "https:\/\/app.qa7.vocal-qa.com\/*" ], "js": [ "js\/script.js" ], "all_frames": true, "css": [ "css\/content.css" ] }, { "run_at": "document_end", "matches": [ "http:\/\/*.salesforce.com\/*", "https:\/\/*.salesforce.com\/*" ], "js": [ "js\/salesforce_extras.js" ], "all_frames": true }, { "run_at": "document_end", "matches": [ "http:\/\/*.google.com\/*", "https:\/\/*.google.com\/*" ], "js": [ "js\/google_extras.js" ], "all_frames": true } ], "browser_action": { "default_title": "__MSG_default_title__", "default_icon": "images\/16.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "images\/c2d.png", "images\/new-window.png", "login.html", "main.html", "register.html", "dialler.html", "call.html", "css\/font-awesome\/font\/fontawesome-webfont.woff", "css\/font-awesome\/font\/fontawesome-webfont.ttf", "css\/font-awesome\/font\/fontawesome-webfont.svg", "css\/font-awesome\/font\/fontawesome-webfont.eot" ], "background": { "page": "background.html" }, "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "permissions": [ "contextMenus", "background", "storage", "notifications", "tabs", "https:\/\/ucb.gunify.com\/*", "https:\/\/*.gnfyor0.qa.vonagenetworks.net\/*", "https:\/\/hamster-ucb-lb.gnfyva0.dev.vonagenetworks.net\/*", "http:\/\/ucb.gunify.com\/*", "http:\/\/hamster-ucb-lb.gnfyva0.dev.vonagenetworks.net\/*", "http:\/\/*.gnfyor0.qa.vonagenetworks.net\/*" ], "omnibox": { "keyword": "-gu" }, "manifest_version": 2, "options_ui": { "page": "options_ui.html", "chrome_style": true } } |