Skip to content

Instantly share code, notes, and snippets.

@skratchdot
Last active August 25, 2025 02:42
Show Gist options
  • Save skratchdot/90ee09a09bf425bdfe7ae724b73f00a9 to your computer and use it in GitHub Desktop.
Save skratchdot/90ee09a09bf425bdfe7ae724b73f00a9 to your computer and use it in GitHub Desktop.
imdb bookmarklet: hide watched search results

imdb bookmarklet: hide watched search results

on a page like:

click the following bookmarklet to hide movies you've marked as watched:

javascript:(() => { const style = document.createElement('style'); style.innerHTML = `   li:has(button[data-testid^="inline-watched-button-"][aria-pressed="true"]) {     display: none;   } `; document.head.appendChild(style); })();
(() => {
const style = document.createElement('style');
style.innerHTML = `
li:has(button[data-testid^="inline-watched-button-"][aria-pressed="true"]) {
display: none;
}
`;
document.head.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment