CleverStaff Importer

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

ما هو CleverStaff Importer؟

CleverStaff Importer هو إضافة Chrome تم تطويرها بواسطة linkens.online، والميزة الرئيسية لها هي "This extension helps you to add your contacts from the LinkedIn to CleverStaff".

تحميل ملف CRX للإضافة CleverStaff Importer

قم بتنزيل ملفات الامتداد CleverStaff Importer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية 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"
        }
    ]
}