Create Odoo leads from LinkedIn

Read LinkedIn contact page and create an Odoo Lead with a single click

What is Create Odoo leads from LinkedIn?

Create Odoo leads from LinkedIn is a Chrome extension developed by Azkatec, and its main feature is "Read LinkedIn contact page and create an Odoo Lead with a single click".

Extension Screenshots

screenshot

Download Create Odoo leads from LinkedIn Extension CRX File

Download Create Odoo leads from LinkedIn extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Reads the LinkedIn contact and create an Odoo lead in a single click                    

Extension Basic Information

Name Create Odoo leads from LinkedIn Create Odoo leads from LinkedIn
ID jcgholhpbpcnglbilaflciokdnhjlfgl
Official URL https://chromewebstore.google.com/detail/create-odoo-leads-from-li/jcgholhpbpcnglbilaflciokdnhjlfgl
Description Read LinkedIn contact page and create an Odoo Lead with a single click
File Size 127 KB
Installation Count 73
Current Version 0.1.3
Last Updated 2023-12-18
Publish Date 2023-03-14
Developer Azkatec
Email [email protected]
Payment Type free
Extension Website http://www.azka.tech
Help Page URL https://azka.tech/contact-us
Privacy Policy Page URL https://azka.tech/azkatech-privacy-policy
Supported Languages 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
}