Lever Hire Extension
Import data to Lever Hire
Lever Hire Extension क्या है?
Lever Hire Extension https://lever.co द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Import data to Lever Hire"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Lever Hire Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |