Create Odoo leads from LinkedIn
Read LinkedIn contact page and create an Odoo Lead with a single click
Hvad er Create Odoo leads from LinkedIn?
Create Odoo leads from LinkedIn er en Chrome-udvidelse udviklet af Azkatec, og dens hovedfunktion er "Read LinkedIn contact page and create an Odoo Lead with a single click".
Udvidelsesskærmbilleder
Download Create Odoo leads from LinkedIn-udvidelses-CRX-fil
Download Create Odoo leads from LinkedIn-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Reads the LinkedIn contact and create an Odoo lead in a single click
Grundlæggende oplysninger om udvidelsen
Navn | Create Odoo leads from LinkedIn |
ID | jcgholhpbpcnglbilaflciokdnhjlfgl |
Officiel URL | https://chromewebstore.google.com/detail/create-odoo-leads-from-li/jcgholhpbpcnglbilaflciokdnhjlfgl |
Beskrivelse | Read LinkedIn contact page and create an Odoo Lead with a single click |
Filstørrelse | 127 KB |
Antal Installationer | 73 |
Nuværende Version | 0.1.3 |
Senest Opdateret | 2023-12-18 |
Udgivelsesdato | 2023-03-14 |
Udvikler | Azkatec |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://www.azka.tech |
Hjælpeside-URL | https://azka.tech/contact-us |
URL til Fortrolighedspolitik Side | https://azka.tech/azkatech-privacy-policy |
Understøttede Sprog | 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 } |