Exelare Extension

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

Was ist Exelare Extension?

Exelare Extension ist eine Chrome-Erweiterung, die von Exelare entwickelt wurde, und ihr Hauptmerkmal ist "Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Exelare Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Exelare Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Exelare Extension Exelare Extension
ID pfdclcliiindobkbaggccghcdegjjjig
Offizielle URL https://chromewebstore.google.com/detail/exelare-extension/pfdclcliiindobkbaggccghcdegjjjig
Beschreibung Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles.
Dateigröße 1.36 MB
Installationsanzahl 385
Aktuelle Version 1.0.13
Letztes Update 2024-01-11
Veröffentlichungsdatum 2022-11-28
Entwickler Exelare
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://exelare.com/
URL der Datenschutzrichtlinien-Seite https://exelare.com/company/customer-information-privacy
Unterstützte Sprachen 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\/*"
    ]
}