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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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\/*" ] } |