Guide Chrome Extension
Supercharge your candidate communications
Guide Chrome Extension란 무엇입니까?
Guide Chrome Extension은(는) https://guide.co에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Supercharge your candidate communications"입니다.
확장 프로그램 스크린샷
Guide Chrome Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Guide Chrome extension allows recruiting teams to communicate with candidates more effectively and efficiently, right inside of Greenhouse. With the Guide Chrome extension installed, every message sent to a candidate automatically includes their personalized, branded candidate portal. And with a unified inbox and real-time engagement metrics, recruiters and coordinators are more productive and nothing slips through the cracks. Why do talent teams love Guide? Less unwanted drop-off, faster time-to-hire, and higher candidate satisfaction (regardless of the hiring decision).
확장 프로그램 기본 정보
이름 | Guide Chrome Extension |
ID | hpdfplaccgajokgmocbcpiicbkkjione |
공식 URL | https://chromewebstore.google.com/detail/guide-chrome-extension/hpdfplaccgajokgmocbcpiicbkkjione |
설명 | Supercharge your candidate communications |
파일 크기 | 1.7 MB |
설치 횟수 | 553 |
현재 버전 | 2.3.22 |
최근 업데이트 | 2024-01-29 |
출시 날짜 | 2023-04-26 |
평점 | 5.00/5 총 10 개의 평점 |
개발자 | https://guide.co |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://guide.co |
도움말 페이지 URL | https://guide.co/contact |
개인정보 보호 정책 페이지 URL | https://guide.co/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Guide Chrome Extension", "version": "2.3.22", "description": "Supercharge your candidate communications", "icons": { "128": "guide-extension-icon--128w.png", "48": "guide-extension-icon--48w.png", "38": "guide-extension-icon--38w.png", "16": "guide-extension-icon--16w.png" }, "browser_action": [], "homepage_url": "https:\/\/app.guide.co\/", "web_accessible_resources": [ "web-accessible-content\/proxy.html", "web-accessible-content\/proxy.js", "web-accessible-content\/logomark--color.svg", "web-accessible-content\/logo-horizontal.svg", "web-accessible-content\/intro-tour-hero-image.png", "web-accessible-content\/intro-tour\/tour-image1.png", "web-accessible-content\/intro-tour\/tour-image2.png", "web-accessible-content\/intro-tour\/tour-image3.png", "web-accessible-content\/intro-tour\/complete.png", "web-accessible-content\/hiring-decisions-tour\/tour-image-1.png" ], "permissions": [ "background" ], "content_scripts": [ { "js": [ "contentscript.js" ], "matches": [ "https:\/\/*.greenhouse.io\/*", "https:\/\/*.lever.co\/*", "https:\/\/*.goodtime.io\/*" ], "run_at": "document_idle" } ], "externally_connectable": { "ids": [ "bhlhgcflccnmfobocjmfcogeboppchdj" ], "matches": [ "https:\/\/localhost:3002\/*", "https:\/\/app.guide.co\/*" ] }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src https:\/\/*.guide.co 'self'; object-src 'self'" } |