LinkMatch For HubSpot
Automated LinkedIn sourcing for Hubspot
Vad är LinkMatch For HubSpot?
LinkMatch For HubSpot är en Chrome-tillägg utvecklad av https://linkmatch.com, och dess huvudfunktion är "Automated LinkedIn sourcing for Hubspot".
Tilläggsskärmbilder
Ladda ner LinkMatch For HubSpot-förlängningens CRX-fil
Ladda ner LinkMatch For HubSpot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Perfect integration between Hubspot and Linkedin. - Instantly see which LinkedIn profiles are already in your HubSpot. - Save LinkedIn profiles into your HubSpot with one click. - Set your settings in LinkMatch so that profiles are saved in a way you want. - View and edit all the profile's related data without leaving LinkedIn. You can see profile data, activities, emails, tasks right inside of LinkedIn. By installing this Chrome Extension you agree to the Terms of Service - linkmatch.net/terms ______ Browser permissions description for compliance with Chrome WebStore policies: - tabs: for finding a tabs which has LinkedIn or Xing launched to show notification if needed - cookies: to be able to make API calls to HubSpot Web API - https://*.hubapi.com/* - to be able to make requests to HubSpot REST API - https://*.hubspot.com/* a- - to be able to make requests to HubSpot Web API - https://*.linkedin.com/* - to be able to make requests to linkedin.com - https://*.xing.com/* - to be able to make requests to xing - https://*.linkmatch.net/* - API calls to LinkMatch(application server)
Grundläggande Information om Tillägg
Namn | LinkMatch For HubSpot |
ID | hplabloglpkgkkakldlgbnjkliakpklg |
Officiell webbadress | https://chromewebstore.google.com/detail/linkmatch-for-hubspot/hplabloglpkgkkakldlgbnjkliakpklg |
Beskrivning | Automated LinkedIn sourcing for Hubspot |
Filstorlek | 4.76 MB |
Antal Installationer | 3,170 |
Aktuell Version | 4.76 |
Senast Uppdaterad | 2024-03-01 |
Publiceringsdatum | 2020-06-23 |
Betyg | 5.00/5 Totalt 6 Betyg |
Utvecklare | https://linkmatch.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://linkmatch.com/hubspot |
Hjälpsida URL | https://linkmatch.com/faq/hubspot |
URL till Sekretesspolicy Sidan | https://linkmatch.net/privacy |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LinkMatch For HubSpot", "manifest_version": 2, "short_name": "LinkMatch", "version": "4.76", "description": "Automated LinkedIn sourcing for Hubspot", "browser_action": { "default_icon": { "19": "icon48.png", "38": "icon48.png" } }, "permissions": [ "cookies", "tabs", "https:\/\/*.hubapi.com\/*", "https:\/\/*.hubspot.com\/*", "https:\/\/*.linkedin.com\/*", "https:\/\/*.xing.com\/*", "https:\/\/*.linkmatch.net\/*", "https:\/\/linkmatch.net\/*" ], "icons": { "16": "icon48.png", "48": "icon48.png", "128": "icon48.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.linkedin.com\/*", "https:\/\/*.xing.com\/*" ], "js": [ "content-script-bundle.js" ], "css": [ "content-styles.css", "content-styles1.css", "content-script-styles.css" ], "run_at": "document_end" }, { "run_at": "document_end", "css": [ "content-styles.css", "content-script-styles.css" ], "js": [ "content-script-bundle.js" ], "matches": [ "https:\/\/www.linkedin.com\/404\/*", "https:\/\/*.xing.com\/404\/*" ], "all_frames": true }, { "matches": [ "https:\/\/*.hubspot.com\/oauth\/*" ], "js": [ "auth-token-hubspot-bundle.js" ], "css": [ "auth-token-hubspot-styles.css" ], "run_at": "document_end" } ], "options_page": "options_page.html", "background": { "scripts": [ "background-script-bundle.js" ] } } |