Last active
August 25, 2025 02:42
-
-
Save skratchdot/90ee09a09bf425bdfe7ae724b73f00a9 to your computer and use it in GitHub Desktop.
Revisions
-
skratchdot revised this gist
Aug 25, 2025 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ (() => { const style = document.createElement('style'); style.innerHTML = ` li:has(button[data-testid^="inline-watched-button-"][aria-pressed="true"]) { display: none; } `; document.head.appendChild(style); })(); -
skratchdot revised this gist
Aug 25, 2025 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ (() => { const style = document.createElement('style'); style.innerHTML = ` li:has(button[data-testid^="inline-watched-button-"][aria-pressed="true"]) { display: none; } `; document.head.appendChild(style); })(); -
skratchdot created this gist
Aug 25, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # imdb bookmarklet: hide watched search results on a page like: - https://www.imdb.com/search/title/?title_type=feature click the following bookmarklet to hide movies you've marked as watched: ```js 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); })(); ``` This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ (() => { const style = document.createElement('style'); style.innerHTML = ` li:has(button[data-testid^="inline-watched-button-"][aria-pressed="true"]) { display: none; } `; document.head.appendChild(style); })();