Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Strongground/72b5d053f5b61bc2e0ea141d24aef985 to your computer and use it in GitHub Desktop.
Save Strongground/72b5d053f5b61bc2e0ea141d24aef985 to your computer and use it in GitHub Desktop.
Remove non-free "premium" entries from free3d.com's search results
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