LinkedIn Easy Apply AutoApply
Automatically applies to LinkedIn Easy Apply job postings.
Automatically unchecks the 'Follow company' checkbox when applying for jobs on LinkedIn
Review user movement across collected snapshots.
View collected rating snapshots from the latest 7-day window to assess rating stability.
Compare 1-day, 7-day, and 30-day net growth and growth rate.
Review publication date, version, supported languages, and crawl timestamps.
Review the store description, core capabilities, and common use cases.
Take control of your LinkedIn experience and stop unwanted company follows!
This extension automatically unchecks the "Follow Company" checkbox when applying for jobs.
What it does:
- Automatically unchecks the "Follow Company" checkbox during job applications
- Works on all LinkedIn job pages
- Easy enable/disable toggle
Inspect the latest comments and rating distribution.
Store average score: 4.3. The bars below are calculated from synced review text only, so they may be empty for extensions that have public ratings but no synced comments yet.
Review related products from the Chrome Web Store detail page.
Automatically applies to LinkedIn Easy Apply job postings.
Revert Google Images to classic view & disable Lens for a simpler, nostalgic search experience.
Hide jobs you have already applied to from your job search results on LinkedIn, with configurable options.
Automate the easy apply process on LinkedIn job listings.
Automatically unchecks the 'Follow <Company> to stay up to date with their page.' checkbox when using LinkedIn Easy Apply.
Teemo AI helps job seekers fill out repetitive applications faster using smart automation. Works on popular job platforms
This used to work for me but it seems slightly buggy? Sometimes the checkmark would not get undone, but it still worked, a bit confusing. Anyway, I wrote the whole thing myself, I now use this as a Tampermonkey userscript ``` (function() { document.addEventListener('click', (event) => { const applyButton = event.target.closest('button#jobs-apply-button-id:not([role="link"])'); if (!applyButton) return; setTimeout(() => { const applyModal = document.querySelector('[data-test-modal-id="easy-apply-modal"]'); if (!applyModal) return; const uncheckFollowIfExists = () => { const checkbox = applyModal.querySelector('input#follow-company-checkbox[type="checkbox"]'); if (checkbox && checkbox.checked) { checkbox.click(); console.debug('Auto-unchecked the company follow checkbox.'); return true; } return false; } if (uncheckFollowIfExists()) { return; } const applyModalObserver = new MutationObserver((_mutations, observer) => { if (uncheckFollowIfExists()) { observer.disconnect(); } }); applyModalObserver.observe(applyModal, { childList: true, subtree: true }); }, 10); }); })(); ```
January 2026 - it doesn't work
the follow company checkbox appeared checked for me still, but it does actually result in not following the company afterwards if you check, so it works
Works great
Simple but does the job, I'm tired of unchecking that annoying box.
Thanks a lot :)