- Install Tampermonkey for Chrome or Greasemonkey for Firefox.
- Go to the raw url of this page and Tampermonkey will catch it as a userscript.
Last active
June 25, 2018 10:43
-
-
Save alber70g/682620e3615f71a332a9 to your computer and use it in GitHub Desktop.
Reddit Quick Popularity Identification with Colors based on Vote Count
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Reddit vote color identification | |
// @namespace gist.github.com/Alber70g | |
// @version 0.12 | |
// @description Reddit votes colors (logarithmic) | |
// @author Alber70g | |
// @match https://www.reddit.com/r/* | |
// @exclude https://www.reddit.com/r/*/comments* | |
// @include https://www.reddit.com/ | |
// @require https://unpkg.com/[email protected]/chroma.js | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js | |
// @grant none | |
// @updateURL https://gist.github.com/Alber70g/682620e3615f71a332a9/raw/RedditVotesColors.user.js | |
// ==/UserScript== | |
waitForKeyElements('[data-click-id="upvote"]', () => { | |
var allColorElements = Array.from(document.querySelectorAll('[data-click-id="upvote"]')).map(x => { | |
return x.parentElement.children[1]; | |
}); | |
var allColors = allColorElements.map(x => +parseVoteK(x.innerText)); | |
var sortedColors = allColors.sort((a,b) => a-b); | |
var skipCount = allColors.length / 100 * 5; | |
var high = sortedColors[Math.round(allColors.length-skipCount)]; | |
var low = 0; | |
/** | |
* Color pallet being used | |
* http://gka.github.io/palettes/#diverging|c0=lightgrey,lime,yellow|c1=yellow,Red|steps=12|bez0=0|bez1=0|coL0=1|coL1=1 | |
*/ | |
var getColor = chroma.scale(['lightgrey','lime','yellow','Red']).domain([low, high], 10); // allColors.length/10); | |
allColorElements.forEach(x => { | |
x.style.borderBottomStyle = 'solid'; | |
x.style.borderBottomColor = getColor(+parseVoteK(x.innerText)).hex(); | |
x.style.borderBottomWidth = '3px'; | |
x.style.width = '20px'; | |
x.style.textAlign = 'center'; | |
}); | |
}); | |
function parseVoteK(vote) { | |
return vote.replace('.', '').replace('k', '000'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment