Taboola-Hubspot Integration
Launch Taboola campaigns straight from the Hubspot dashboard
Что такое Taboola-Hubspot Integration?
Taboola-Hubspot Integration - это расширение Chrome, разработанное Unknown, и его основная функция - "Launch Taboola campaigns straight from the Hubspot dashboard".
Снимки экрана расширения
Скачать файл CRX расширения Taboola-Hubspot Integration
Скачайте файлы расширений Taboola-Hubspot Integration в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The Taboola-Hubspot integration extension allows you to create and launch a Taboola campaign straight from the Hubspot blog section. Follow this link for further instructions https://go.taboola.com/taboola-hubspot
Основная информация о расширении
Название | Taboola-Hubspot Integration |
ID | bhlmogoljimkgdgkiaoffhonelihdobh |
Официальный URL | https://chromewebstore.google.com/detail/taboola-hubspot-integrati/bhlmogoljimkgdgkiaoffhonelihdobh |
Описание | Launch Taboola campaigns straight from the Hubspot dashboard |
Размер файла | 907 KB |
Количество установок | 195 |
Текущая Версия | 1.1.0.0 |
Последнее Обновление | 2019-08-12 |
Дата публикации | 2019-08-12 |
Разработчик | Unknown |
Тип оплаты | free |
Официальный сайт расширения | https://go.taboola.com/taboola-hubspot/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Taboola-Hubspot Integration", "description": "Launch Taboola campaigns straight from the Hubspot dashboard", "version": "1.1.0.0", "icons": { "128": "images\/icon.png" }, "permissions": [ "webNavigation", "tabs", "storage", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_title": "Taboola", "default_popup": "popup.html" }, "web_accessible_resources": [ "images\/icon_white.svg", "images\/question.svg", "images\/desktop.svg", "images\/mobile.svg", "images\/tablet.svg", "images\/success.svg", "images\/error.svg" ], "content_scripts": [ { "matches": [ "*:\/\/app.hubspot.com\/website\/*", "*:\/\/app.hubspot.com\/content-detail\/*" ], "css": [ "hubspot.css" ], "js": [ "hubspot.js" ] }, { "matches": [ "*:\/\/hubspot-integration-12.appspot.com\/success*" ], "css": [ "success.css" ], "js": [ "success.js" ] } ] } |