Greenhouse Recruiting Chrome extension
Add prospects to Greenhouse from anywhere
Greenhouse Recruiting Chrome extensionคืออะไร?
Greenhouse Recruiting Chrome extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sourcing และคุณลักษณะหลักของมันคือ "Add prospects to Greenhouse from anywhere"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Greenhouse Recruiting Chrome extension
ดาวน์โหลดไฟล์ส่วนขยาย Greenhouse Recruiting Chrome extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Greenhouse Recruiting Chrome extension allows your organization to add prospects to your Greenhouse CRM from a website, resume, or manually through the plugin without leaving your current workflow. Adding a resume now auto-parses contact details for an even more efficient way to add new talent to Greenhouse. Whether you’re organizing talent into prospect pools or actively performing outreach, the Greenhouse Recruiting Chrome extension ensures you can find, reach, and track your prospects more efficiently and effectively - all within Greenhouse. Learn more about how to get started with the extension, including a brief overview video: https://support.greenhouse.io/hc/en-us/articles/4947637389083-Greenhouse-Recruiting-Chrome-extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Greenhouse Recruiting Chrome extension |
ID | naooopefdfeangnkgmjpklgblnfmbaea |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/greenhouse-recruiting-chr/naooopefdfeangnkgmjpklgblnfmbaea |
คำอธิบาย | Add prospects to Greenhouse from anywhere |
ขนาดไฟล์ | 3.78 MB |
จำนวนการติดตั้ง | 7,344 |
เวอร์ชันปัจจุบัน | 3.1.1 |
อัปเดตครั้งล่าสุด | 2024-02-27 |
วันที่เผยแพร่ | 2022-05-20 |
คะแนน | 2.31/5 รวมทั้งหมด 16 คะแนน |
ผู้พัฒนา | sourcing |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://support.greenhouse.io/hc/en-us/articles/4947637389083 |
URL หน้านโยบายความเป็นส่วนตัว | https://www.greenhouse.com/privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Greenhouse Recruiting Chrome extension", "version": "3.1.1", "short_name": "Greenhouse Recruiting", "manifest_version": 3, "action": [], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "service_worker": "background.js" }, "options_page": ".\/options.html", "host_permissions": [ "https:\/\/*.greenhouse.io\/*", "https:\/\/*.greenhouse.dev\/*", "https:\/\/*.linkedin.com\/*", "https:\/\/*.github.com\/*" ], "permissions": [ "cookies", "webRequest", "storage", "system.display", "tabs", "contextMenus" ], "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "js": [ "github.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.angel.co\/*" ], "js": [ "angellist.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.indeed.com\/*" ], "js": [ "indeed.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "common.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "\/images\/*.png" ], "matches": [ "*:\/\/*.github.com\/*" ] } ], "description": "Add prospects to Greenhouse from anywhere" } |