Skip to content

Instantly share code, notes, and snippets.

@ajitam
Last active December 17, 2015 15:19
Show Gist options
  • Save ajitam/5631310 to your computer and use it in GitHub Desktop.
Save ajitam/5631310 to your computer and use it in GitHub Desktop.
Torrentleech - movies downloded times... (Minimalist - Chrome extension)
var times,
opacity;
$("#torrenttable tbody tr").each(function() {
times = $(this).find('td').eq(5).text();
//console.log(parseInt(times.replace("times", ""),10));
opacity = (parseInt(times.replace("times", ""),10))*0.000225;
$(this).css('background-color', 'rgba(255,0,0,'+opacity+')');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment