Exelare Extension

Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles.

Exelare Extensionคืออะไร?

Exelare Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Exelare และคุณลักษณะหลักของมันคือ "Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Exelare Extension

ดาวน์โหลดไฟล์ส่วนขยาย Exelare Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles. It allows users to easily add/update profiles avoiding manual data entry and save time.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Exelare Extension Exelare Extension
ID pfdclcliiindobkbaggccghcdegjjjig
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/exelare-extension/pfdclcliiindobkbaggccghcdegjjjig
คำอธิบาย Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles.
ขนาดไฟล์ 1.36 MB
จำนวนการติดตั้ง 385
เวอร์ชันปัจจุบัน 1.0.13
อัปเดตครั้งล่าสุด 2024-01-11
วันที่เผยแพร่ 2022-11-28
ผู้พัฒนา Exelare
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://exelare.com/
URL หน้านโยบายความเป็นส่วนตัว https://exelare.com/company/customer-information-privacy
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Exelare Extension",
    "description": "Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles.",
    "version": "1.0.13",
    "minimum_chrome_version": "92",
    "icons": {
        "64": "icon.png",
        "128": "icon_big.png"
    },
    "action": {
        "icons": {
            "16": "icon.png",
            "24": "icon.png",
            "34": "icon.png"
        },
        "default_title": "Login to Exelare",
        "default_popup": "loginForm.html"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "newBack.js"
    },
    "options_page": "options.html",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/*.zoominfo.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.linkedin.com\/recruiter\/smartsearch*",
                "*:\/\/*.linkedin.com\/recruiter\/hiring-dashboard*"
            ],
            "css": [
                "css\/ExelareStyles.css"
            ],
            "js": [
                "libs\/jquery-3.2.1.min.js",
                "libs\/jquery.cookie.js",
                "libs\/lodash.min.js",
                "utils\/helpers.js",
                "contentScript.js",
                "scraper.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/*.zoominfo.com\/*"
    ]
}