Springboard JobTracker

Save job applications to your career dashboard directly from job posting sites.

Springboard JobTrackerคืออะไร?

Springboard JobTracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Springboard และคุณลักษณะหลักของมันคือ "Save job applications to your career dashboard directly from job posting sites."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Springboard JobTracker

ดาวน์โหลดไฟล์ส่วนขยาย Springboard JobTracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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": [
                ""
            ]
        }
    ]
}