CodeSignal
CodeSignal Chrome Extension: Generate CodeSignal interview links and easily add them to your ATS.
Τι είναι το CodeSignal;
Το CodeSignal είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον CodeSignal, και η κύρια λειτουργία του είναι "CodeSignal Chrome Extension: Generate CodeSignal interview links and easily add them to your ATS.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CodeSignal
Λήψη αρχείων επέκτασης CodeSignal σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
With the CodeSignal extension, technical recruiters don’t have to switch between their Applicant Tracking System and CodeSignal while scheduling interviews — instead, they can conveniently generate interview links directly from the extension while staying within the ATS. Recruiters can also view previous links that they have generated through the extension, to allow for copying it easily to multiple places, such as both the ATS and a calendar invitation, for example. For Greenhouse and Lever users, the integration is even more powerful. The CodeSignal extension will generate a “Create Interview Link” option directly within the Greenhouse or Lever ATS, which you can click to automatically generate an interview link that will be auto-filled into your ATS (for Greenhouse) or can be easily copied (for Lever). To get started, simply download the extension and log in to your CodeSignal company account. If you’re not using Greenhouse or Lever, click on the CodeSignal extension icon to get started! If you are using Greenhouse or Lever, then open a candidate's profile in your ATS, and autogenerate a CodeSignal interview link with the click of a button!
Βασικές Πληροφορίες Επέκτασης
Όνομα | CodeSignal |
ID | ljpmmkjcophmdnndejefcilnkmhpjlfh |
Επίσημο URL | https://chromewebstore.google.com/detail/codesignal/ljpmmkjcophmdnndejefcilnkmhpjlfh |
Περιγραφή | CodeSignal Chrome Extension: Generate CodeSignal interview links and easily add them to your ATS. |
Μέγεθος Αρχείου | 22.63 KB |
Αριθμός Εγκαταστάσεων | 684 |
Τρέχουσα Έκδοση | 0.7.0 |
Τελευταία Ενημέρωση | 2023-10-04 |
Ημερομηνία Δημοσίευσης | 2020-06-10 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | CodeSignal |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://codesignal.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://support.codesignal.com/hc/en-us/categories/360003411653-ATS-Integrations |
URL της Σελίδας Πολιτικής Απορρήτου | https://codesignal.com/privacy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "CodeSignal", "description": "CodeSignal Chrome Extension: Generate CodeSignal interview links and easily add them to your ATS.", "version": "0.7.0", "icons": { "48": "assets\/logo-48.png", "128": "assets\/logo-128.png" }, "web_accessible_resources": [ { "resources": [ "\/assets\/*.png", "\/views\/login-frame.html" ], "matches": [ "https:\/\/*.codesignal.com\/*", "http:\/\/localhost:3000\/*", "https:\/\/*.greenhouse.io\/*", "https:\/\/*.lever.co\/*" ] } ], "action": { "default_title": "CodeSignal", "default_icon": "assets\/logo-48.png", "default_popup": "views\/popup.html" }, "permissions": [ "tabs" ], "background": { "service_worker": "scripts\/background.js" }, "host_permissions": [ "https:\/\/*.codesignal.com\/*", "http:\/\/localhost:3000\/*", "https:\/\/*.greenhouse.io\/*", "https:\/\/*.lever.co\/candidates\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.greenhouse.io\/interviews\/scheduler\/legacy*" ], "js": [ "scripts\/greenhouse-create-interview-legacy.js" ], "css": [ "styles\/iframe-sidebar.css" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/*.greenhouse.io\/interviews\/scheduler?*" ], "js": [ "scripts\/greenhouse-create-interview.js" ], "css": [ "styles\/iframe-sidebar.css" ], "run_at": "document_idle" }, { "matches": [ "*:\/\/*\/cfr-extension\/connect" ], "all_frames": true, "js": [ "scripts\/codesignal-connect.js" ] }, { "matches": [ "https:\/\/*.lever.co\/candidates\/*", "https:\/\/*.lever.co\/inbox\/*" ], "js": [ "scripts\/lever-create-interview.js" ], "run_at": "document_idle", "css": [ "styles\/lever-create-interview.css", "styles\/iframe-sidebar.css" ] } ] } |