Taboola-Hubspot Integration
Launch Taboola campaigns straight from the Hubspot dashboard
Co to jest Taboola-Hubspot Integration?
Taboola-Hubspot Integration to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Launch Taboola campaigns straight from the Hubspot dashboard”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Taboola-Hubspot Integration
Pobierz pliki rozszerzeń Taboola-Hubspot Integration w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Taboola-Hubspot Integration |
ID | bhlmogoljimkgdgkiaoffhonelihdobh |
Oficjalny URL | https://chromewebstore.google.com/detail/taboola-hubspot-integrati/bhlmogoljimkgdgkiaoffhonelihdobh |
Opis | Launch Taboola campaigns straight from the Hubspot dashboard |
Rozmiar pliku | 907 KB |
Liczba instalacji | 195 |
Aktualna Wersja | 1.1.0.0 |
Ostatnia Aktualizacja | 2019-08-12 |
Data Publikacji | 2019-08-12 |
Deweloper | Unknown |
Typ Płatności | free |
Strona Rozszerzenia | https://go.taboola.com/taboola-hubspot/ |
Obsługiwane Języki | 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" ] } ] } |