Create Odoo leads from LinkedIn
Read LinkedIn contact page and create an Odoo Lead with a single click
Wat is Create Odoo leads from LinkedIn?
Create Odoo leads from LinkedIn is een Chrome-extensie ontwikkeld door Azkatec, en de belangrijkste functie is "Read LinkedIn contact page and create an Odoo Lead with a single click".
Extensie Screenshots
Download het CRX-bestand van de extensie Create Odoo leads from LinkedIn
Download Create Odoo leads from LinkedIn-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Reads the LinkedIn contact and create an Odoo lead in a single click
Basisinformatie over de Extensie
Naam | Create Odoo leads from LinkedIn |
ID | jcgholhpbpcnglbilaflciokdnhjlfgl |
Officiële URL | https://chromewebstore.google.com/detail/create-odoo-leads-from-li/jcgholhpbpcnglbilaflciokdnhjlfgl |
Beschrijving | Read LinkedIn contact page and create an Odoo Lead with a single click |
Bestandsgrootte | 127 KB |
Aantal Installaties | 73 |
Huidige Versie | 0.1.3 |
Laatst Bijgewerkt | 2023-12-18 |
Publicatiedatum | 2023-03-14 |
Ontwikkelaar | Azkatec |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://www.azka.tech |
Help Pagina-URL | https://azka.tech/contact-us |
URL van de Privacybeleid Pagina | https://azka.tech/azkatech-privacy-policy |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Create Odoo leads from LinkedIn", "version": "0.1.3", "description": "Read LinkedIn contact page and create an Odoo Lead with a single click", "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.linkedin.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "css": [ "content.css" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png", "assets\/preloader.gif", "assets\/ext-icon.png" ], "matches": [ "https:\/\/*.linkedin.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "Generate Odoo Lead", "default_popup": "popup.html" }, "manifest_version": 3 } |