Created
May 23, 2024 14:29
-
-
Save Strongground/72b5d053f5b61bc2e0ea141d24aef985 to your computer and use it in GitHub Desktop.
Remove non-free "premium" entries from free3d.com's search results
This file contains 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 characters
document.querySelectorAll('.search-results .optimize-mixed div.search-result').forEach(item => {if (item.className.indexOf('premium') > -1) {item.remove()}}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment