Skip to content

Instantly share code, notes, and snippets.

@ubershmekel
Created October 14, 2019 01:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ubershmekel/b3fe48a7d978157cacdc019d9ba73d12 to your computer and use it in GitHub Desktop.
Save ubershmekel/b3fe48a7d978157cacdc019d9ba73d12 to your computer and use it in GitHub Desktop.
Crunchbase hides search results behind a darker element and blurs the rows. This removes that.
// E.g used on
// https://www.crunchbase.com/search/principal.investors/8ff469dfad43f418bb327da3508ebddf
// Crunchbase hides search results behind a darker element and blurs the rows. This removes that
// so you can see the top 15 results instead of just 5. Though you won't be able to see beyond that.
document.querySelector('.all-results-upsell-wrapper').remove()
document.querySelectorAll('grid-row').forEach((it) => { it.setAttribute("class", "") })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment