xxxxxxxxxx
/**
* UPDATED
*
* It's April 21, 2024, and the error still hasn't been fixed.
* What's more, many are spreading viral/harmful content,
* artificially boosting their upvote counts and misleadingly
* tagging posts. I believe this seriously undermines the site's
* reliability, so I don't recommend using the website or
* its extensions. Stack Overflow is much better and more up-to-date.
* Its moderation is superior, and the votes are more genuine.
*/
/**
* CodeGrepper Bug in vote System
* - detected: 2022-12-07
* - repaired: not yet
* - feedback: send for CodeGrepper support
*
* Site verify is my selection with "commando_voted" class.
* (So, If you reload site, can vote again.)
*
* However, You can remove that class with console using, and can simulate click event.
* Here is my examples.
*/
// Universal Code for UpVote // x1000 times
const upArrow = document.querySelector('div.commando-voting-holder div:nth-child(1)');
for (let i = 0; i < 1000; i++) {
upArrow.classList.remove('commando_voted');
upArrow.click();
}
// Universal Code for DownVote // x1000 times
const downArrow = document.querySelector('div.commando-voting-holder div:nth-child(3)');
for (let i = 0; i < 1000; i++) {
downArrow.classList.remove('commando_voted');
downArrow.click();
}
/**
* Why I public this issue?
* !!!!!
* Polling is unreliable and not realistic.
* So, it doesn't make any sense.
* We need real bugfix or I will not use CodeGrepper anymore.
* !!!!!
*/
function clickArrow(times, direction = 'up', wait = 1000) {
const arrow = direction === 'up' ? document.querySelector('div.commando-voting-holder div:nth-child(1)') :
document.querySelector('div.commando-voting-holder div:nth-child(3)');
let i = 0;
function click() {
if (i < times) {
arrow.classList.remove('commando_voted');
arrow.click();
i++;
setTimeout(click, wait);
}
}
click();
}
clickArrow(1000, 'up');
clickArrow(1000, 'down');