Skip to content

Instantly share code, notes, and snippets.

@FallenMax
Created June 1, 2017 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FallenMax/c36fe46852dcf90957fa23a90550d08d to your computer and use it in GitHub Desktop.
Save FallenMax/c36fe46852dcf90957fa23a90550d08d to your computer and use it in GitHub Desktop.
find chrome extensions with >10 5-stars
(function(){
const list = $$('.webstore-test-wall-tile')
const bad = list.filter(item =>
Number(item.querySelector('.q-N-nd').textContent.replace(/[\(\)]/g, '')) < 10
)
bad.forEach(item => item.remove())
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment