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" } |