3

@red please share with us your ++ code :D

Comments
  • 3
    Fail
  • 0
  • 1
    #include "devRant.h"

    int main(){
    while(true){
    ++;
    }
    return 0;
    }
  • 2
    most basic version through chrome console:
    open a user comments section or anything with a .plusone really and run:
    document.querySelectorAll('.plusone').forEach(function(plus){ plus.click() })
  • 0
    @mpie I'm not familar with HTML/CSS/JS but following is your enhanced version:

    document.querySelectorAll('.plusone').forEach(function(plus){
    let parent = plus.closest(".vote-widget");
    if(parent.classList.contains("vote-state-unvoted")){
    plus.click();
    }
    });
Add Comment