Create Odoo leads from LinkedIn

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

Create Odoo leads from LinkedInとは何ですか?

Create Odoo leads from LinkedInはAzkatecによって開発されたChromeの拡張機能で、その主な機能は「Read LinkedIn contact page and create an Odoo Lead with a single click」です。

拡張機能のスクリーンショット

screenshot

Create Odoo leads from LinkedIn拡張機能のCRXファイルをダウンロード

Create Odoo leads from LinkedIn拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Create Odoo leads from LinkedIn Create Odoo leads from LinkedIn
ID jcgholhpbpcnglbilaflciokdnhjlfgl
公式URL https://chromewebstore.google.com/detail/create-odoo-leads-from-li/jcgholhpbpcnglbilaflciokdnhjlfgl
説明 Read LinkedIn contact page and create an Odoo Lead with a single click
ファイルサイズ 127 KB
インストール数 73
現在のバージョン 0.1.3
最終更新日 2023-12-18
公開日 2023-03-14
開発者 Azkatec
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://www.azka.tech
ヘルプページのURL https://azka.tech/contact-us
プライバシーポリシーページのURL https://azka.tech/azkatech-privacy-policy
対応言語 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
}