Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mohas/c52f64e82375f6b7edc012d49373dca1 to your computer and use it in GitHub Desktop.
Save mohas/c52f64e82375f6b7edc012d49373dca1 to your computer and use it in GitHub Desktop.
//you can use this script with browser extensions like cjs or script monkey
//you have to inject jQuery
$('.score').each((_,el)=>{
const points = Number($(el).text().replace(' points', ''))
if(points < 100)
return
$(el).parent().parent().prev().css({backgroundColor:'#efd52363'})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment