Lever Hire Extension
Import data to Lever Hire
Lever Hire Extension란 무엇입니까?
Lever Hire Extension은(는) https://lever.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Import data to Lever Hire"입니다.
확장 프로그램 스크린샷
Lever Hire Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
▻ Source candidates with one click. ● Full resume ● Job titles ● Job descriptions ● Time spent in current and previous jobs ▻ Avoid duplicate entries by being notified if a candidate is already in Lever Hire. ▻ Spend less time entering data, and free up more time for the true work of hiring. ────────────────────────────── ⚠ You need a Lever account to use the Lever Import Extension. Request access here: https://lever.co/
확장 프로그램 기본 정보
이름 | Lever Hire Extension |
ID | dgbcohbjchndmjocioegkgdniaffcaia |
공식 URL | https://chromewebstore.google.com/detail/lever-hire-extension/dgbcohbjchndmjocioegkgdniaffcaia |
설명 | Import data to Lever Hire |
파일 크기 | 326 KB |
설치 횟수 | 10,000 |
현재 버전 | 2.18.0 |
최근 업데이트 | 2022-10-12 |
출시 날짜 | 2019-08-13 |
평점 | 2.83/5 총 23 개의 평점 |
개발자 | https://lever.co |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.lever.co/ |
도움말 페이지 URL | https://help.lever.co/hc/en-us |
개인정보 보호 정책 페이지 URL | https://www.lever.co/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lever Hire Extension", "version": "2.18.0", "manifest_version": 2, "description": "Import data to Lever Hire", "icons": { "16": "icons\/lever-chrome-icon-16.png", "48": "icons\/lever-chrome-icon-dark-48.png", "128": "icons\/lever-chrome-icon-dark-128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_security_policy": "default-src 'self' https:\/\/*.lever.co; script-src 'self' https:\/\/*.lever.co; style-src 'self' 'unsafe-inline'", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs", "unlimitedStorage", "webNavigation", "webRequest", "webRequestBlocking" ], "background": { "scripts": [ "SiteConf.js", "LeverOrigin.js", "background.js" ] }, "browser_action": { "default_title": "Lever Hire", "default_icon": { "19": "icons\/lever-chrome-icon-dark-19.png", "38": "icons\/lever-chrome-icon-dark-38.png" } }, "content_scripts": [ { "matches": [ "https:\/\/lever.co\/*", "https:\/\/hire.lever.co\/*", "https:\/\/hire.stage.lever.co\/*", "https:\/\/hire.eu.lever.co\/*" ], "js": [ "check_install.js" ], "run_at": "document_end" }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "dragdrop.js", "wrapper.js" ], "css": [ "wrapper.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "lib\/inboxsdk.min.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "loading.html", "panel.html", "panel.js", "toast.html", "toast.js", "icons\/*.png", "fonts\/*.woff" ] } |