PCS Screenpop for Bullhorn
Screenpops Bullhorn when a phone call is received.
Что такое PCS Screenpop for Bullhorn?
PCS Screenpop for Bullhorn - это расширение Chrome, разработанное Palitto Consulting Services, и его основная функция - "Screenpops Bullhorn when a phone call is received.".
Снимки экрана расширения
Скачать файл CRX расширения PCS Screenpop for Bullhorn
Скачайте файлы расширений PCS Screenpop for Bullhorn в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension provides the ability to open a contact or candidate record in the Bullhorn CRM in response to phone activity. Note: This plugin requires a phone-system-specific API from Palitto Consulting Services. This API is sold and licensed separate from this extension. Please contact Palitto Consulting Services for more information on licensing and supported phone systems.
Основная информация о расширении
Название | PCS Screenpop for Bullhorn |
ID | hlacgoionfpaobeoicbpnldbgibjhifa |
Официальный URL | https://chromewebstore.google.com/detail/pcs-screenpop-for-bullhor/hlacgoionfpaobeoicbpnldbgibjhifa |
Описание | Screenpops Bullhorn when a phone call is received. |
Размер файла | 49.92 KB |
Количество установок | 86 |
Текущая Версия | 1.5 |
Последнее Обновление | 2022-06-22 |
Дата публикации | 2021-07-17 |
Разработчик | Palitto Consulting Services |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://www.palittoconsulting.com/ |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PCS Screenpop for Bullhorn", "description": "Screenpops Bullhorn when a phone call is received.", "version": "1.5", "icons": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "48": "img\/icon-48.png", "96": "img\/icon-96.png" }, "permissions": [ "https:\/\/app.bullhornstaffing.com\/*", "storage" ], "background": { "page": "background\/background.html", "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/app.bullhornstaffing.com\/" ], "js": [ "content\/content.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": { "16": "img\/button-inactive-16.png", "32": "img\/button-inactive-32.png", "48": "img\/button-inactive-48.png", "96": "img\/button-inactive-96.png" }, "default_title": "PCS Screenpop for Bullhorn", "default_popup": "config\/configuration.html#phone", "browser_style": true, "chrome_style": true }, "web_accessible_resources": [ "content\/main.js", "content\/node.js", "util.js", "screenpop.js" ] } |