Stipplo Job Application Tracker
Track all your job applications with Stipplo.
Stipplo Job Application Trackerคืออะไร?
Stipplo Job Application Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://stipplo.com และคุณลักษณะหลักของมันคือ "Track all your job applications with Stipplo."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stipplo Job Application Tracker
ดาวน์โหลดไฟล์ส่วนขยาย Stipplo Job Application Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simplify and organize your job search process with the BEST job tracker in the market: Stipplo’s Job Application Tracker. Tracking a job search on a spreadsheet is old school. Stipplo is taking job search management to the next level. With our chrome extension, you can easily keep track of all the details of a job application you may be interested in or applied to across any website! Features: ◾ Stipplo’s Job Application Tracker is 100% free! ◾ Auto-fill job post information from most websites like LinkedIn, Indeed, and more! For others, you can select the proper information that goes into each field with just a few clicks! ◾ Save important information such as the company, position, date, etc ◾ One place for everything! Easily access all saved info on a simple dashboard ◾ Drag and drop to track what stages each application is in ◾ Attach resumes or documents related to each job application How it works: ◾ Add this extension ◾ Search for jobs on sites like Indeed, Glassdoor, etc. ◾ Click Stipplo’s icon at bottom right of the page ◾ For sites where we support auto-fill, it will populate all the important information for you ◾ For sites that don't support auto-fill, you can click the fields you’d like to copy and it will prompt you to select the information on the page ◾ Select which board and column on Stipplo you want to save the job application to ◾ Click save ◾ You can then either click “Add another” or “Check your board” to view your dashboard *Requires an account at https://stipplo.com to use.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Stipplo Job Application Tracker |
ID | eelojdbiagbabehiijgghfmdgnggdfna |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/stipplo-job-application-t/eelojdbiagbabehiijgghfmdgnggdfna |
คำอธิบาย | Track all your job applications with Stipplo. |
ขนาดไฟล์ | 1.72 MB |
จำนวนการติดตั้ง | 389 |
เวอร์ชันปัจจุบัน | 0.1.31 |
อัปเดตครั้งล่าสุด | 2023-05-16 |
วันที่เผยแพร่ | 2021-08-03 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | https://stipplo.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://stipplo.com/ |
URL หน้านโยบายความเป็นส่วนตัว | https://www.stipplo.com/privacy-policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stipplo Job Application Tracker", "description": "Track all your job applications with Stipplo.", "version": "0.1.31", "content_scripts": [ { "matches": [ "*:\/\/*.builtinnyc.com\/*", "*:\/\/*.monster.com\/*", "*:\/\/*.angel.co\/*", "*:\/\/*.indeed.com\/*", "*:\/\/*.ziprecruiter.com\/*", "*:\/\/*.linkedin.com\/*", "*:\/\/*.glassdoor.com\/*", "*:\/\/*.glassdoor.ca\/*" ], "js": [ "contentScript.js" ] } ], "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_popup": "popup.html" }, "externally_connectable": { "matches": [ "http:\/\/localhost\/*", "*:\/\/*.stipplo.herokuapp.com\/*", "*:\/\/*.stipplo.com\/*" ] }, "permissions": [ "storage" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "content_security_policy": "script-src 'self' https:\/\/cdn.auth0.com\/js\/auth0-spa-js\/1.9\/auth0-spa-js.production.js http:\/\/localhost:8081 https:\/\/stipplo.herokuapp.com\/; object-src 'self'", "web_accessible_resources": [ "contentScriptContainer.html" ] } |