Name: Anonymous 2016-07-11 6:55
1. navigate to http://bbs.progrider.org/prog/all
2. open the JavaShit console
3. paste this and hit <RET>
Happy spamming :-D
2. open the JavaShit console
3. paste this and hit <RET>
(function() {
var postNums = document.querySelectorAll('#threadlist > div > table > tbody > tr > td:nth-child(3)')
var threadLinks = document.querySelectorAll('#threadlist > div > table > tbody > tr > td:nth-child(2) > a')
var isAlmostDubs = function(num) { if (((num+1)%100)%11 == 0) { return true } else { return false } }
postNums.forEach(function(num, idx) {
if (isAlmostDubs(parseInt(num.innerText))) {
var almostDubThread = document.createElement('div')
almostDubThread.appendChild(threadLinks[idx])
document.body.insertBefore(almostDubThread, document.body.firstChild)
}
})
})()
Happy spamming :-D