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文件
下载Lever Hire Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
▻ 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/ 扩展基本信息
| 名称 | |
| 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"
]
} | |