Exelare Extension
Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles.
什么是Exelare Extension?
Exelare Extension是由Exelare开发的Chrome扩展程序,该扩展的主要功能是“Exelare extension is a bridge between Exelare and other sites which carry candidate and contact profiles.”。
扩展截图
下载Exelare Extension扩展crx文件
下载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.                     扩展基本信息
| 名称 |   |  
| 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\/*"
    ]
}  |  |