Springboard JobTracker
Save job applications to your career dashboard directly from job posting sites.
Springboard JobTracker란 무엇입니까?
Springboard JobTracker은(는) Springboard에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save job applications to your career dashboard directly from job posting sites."입니다.
확장 프로그램 스크린샷
Springboard JobTracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
We built the Springboard JobTracker Chrome extension to help you… 1. Log job applications faster: - Log jobs to your career dashboard directly from leading job boards - (LinkedIn, Indeed, AngelList, Greenhouse) with just 1-click - Update the status of your job applications - Add notes for yourself or your career coach about each application 2. Log networking contacts faster: - Log contacts to your career dashboard directly from LinkedIn with just 1-click - Update the outreach status of each contact 3. Grow your network: - Access Springboard's large community of mentors & alumni on LinkedIn to build your network - Discover Springboard mentors & alumni as you browse jobs, people, or companies on LinkedIn - Get tips and messaging templates on building meaningful connections - Request informational interviews to learn from their experience - You may get a referral to hiring managers for open roles at their company Permissions: activeTab: to access current tab url, title and inject content script on browser action clicked. storage: to cache data used by background script and app scripts cookies: to check login status at springboard webRequest, webRequestBlocking: to add springboard specific custom headers for making api requests. Springboard: to make api requests and save job application info filled by user.
확장 프로그램 기본 정보
이름 | Springboard JobTracker |
ID | ajceemkmbgjolpocnkfccjmplcbbppel |
공식 URL | https://chromewebstore.google.com/detail/springboard-jobtracker/ajceemkmbgjolpocnkfccjmplcbbppel |
설명 | Save job applications to your career dashboard directly from job posting sites. |
파일 크기 | 1.3 MB |
설치 횟수 | 4,805 |
현재 버전 | 7.9 |
최근 업데이트 | 2024-02-04 |
출시 날짜 | 2020-04-30 |
평점 | 4.86/5 총 7 개의 평점 |
개발자 | Springboard |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://springboard.com |
개인정보 보호 정책 페이지 URL | https://www.springboard.com/legal/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Springboard JobTracker", "description": "Save job applications to your career dashboard directly from job posting sites.", "version": "7.9", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "action": { "default_icon": { "16": "assets\/logged-out-icon.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.linkedin.com\/*" ], "js": [ "ext-env.js", "ext-config.js", "contentScript.js" ] } ], "permissions": [ "activeTab", "storage", "cookies", "scripting", "declarativeNetRequest", "declarativeNetRequestFeedback", "tabs" ], "host_permissions": [ "*:\/\/*.springboard.com\/*", "*:\/\/*.linkedin.com\/*", "*:\/\/*.segment.io\/*" ], "web_accessible_resources": [ { "resources": [ "assets\/*", "index.html" ], "matches": [ " |