How to mark all jobs as viewed in Linkedin with your browser console
Tuesday, April 22, 2025This solution is working in April 2025:
- Go to your Jobs Linkedin page
- Open your browser console
- Type this piece of code
const buttons = document.querySelectorAll(".artdeco-button--2");
let num = 0;
buttons.forEach((button) => {
const ariaLabel = button.getAttribute("aria-label")?.toLowerCase();
if (ariaLabel && ariaLabel.startsWith("dismiss")) {
button.click();
num++;
}
});
console.log(`${num} dismissed`);
Before:
After: