CleverStaff Importer

This extension helps you to add your contacts from the LinkedIn to CleverStaff

CleverStaff Importerとは何ですか?

CleverStaff Importerはlinkens.onlineによって開発されたChromeの拡張機能で、その主な機能は「This extension helps you to add your contacts from the LinkedIn to CleverStaff」です。

CleverStaff Importer拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Extension to automatically import contacts from Linkedin into CleverStaff.                    

拡張機能の基本情報

名前 CleverStaff Importer CleverStaff Importer
ID negnoigedepjkjpooadklljidpapfhcb
公式URL https://chromewebstore.google.com/detail/cleverstaff-importer/negnoigedepjkjpooadklljidpapfhcb
説明 This extension helps you to add your contacts from the LinkedIn to CleverStaff
ファイルサイズ 2.44 MB
インストール数 91
現在のバージョン 1.0.1
最終更新日 2016-12-27
公開日 2016-12-27
評価 5.00/5 合計 1 レビュー
開発者 linkens.online
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://linkens.online/policy
対応言語 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CleverStaff Importer",
    "description": "This extension helps you to add your contacts from the LinkedIn to CleverStaff",
    "version": "1.0.1",
    "default_locale": "en",
    "icons": {
        "128": "components\/icon.png"
    },
    "browser_action": {
        "default_icon": "components\/icon.png",
        "default_popup": "components\/html\/popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "page": "components\/html\/background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.linkedin.com\/connections*",
                "*:\/\/www.linkedin.com\/connections?*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "components\/js\/class.app.js",
                "components\/js\/connections.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.linkedin.com\/in\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "components\/js\/class.app.js",
                "components\/js\/profile.js"
            ],
            "run_at": "document_end"
        }
    ]
}