How generous

wtf i love communism now

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        How generous
// @namespace   Violentmonkey Scripts
// @match       https://ruqqus.com/*
// @grant       none
// @version     1.5
// @author      PauloBoks
// @description wtf i love communism now
// ==/UserScript==

console.log("inicianting comunismifsafsd");

let upvoteThreshold = 0;
let highLightPosts = true;
let highLightColor = [128, 90, 213] // [R, G, B]

function upvoteAllPosts() {
  document.querySelectorAll('div[id^="post"].card:not(.upvoted):not(.downvoted)').forEach(function(card) {
    try { // for some reason sometimes things go wrong, i'll look into it when i get proper time
      if(card.querySelector(".score").innerText > upvoteThreshold) {
        if(highLightPosts) { card.style.backgroundColor = `rgb(${highLightColor[0]}, ${highLightColor[1]}, ${highLightColor[2]})`; }

        card.querySelector(".arrow-up").click();
      }
    } catch(err) {}
  });
}

function upvoteAllComments() {
  document.querySelectorAll("div.comment-actions:not(.upvoted):not(.downvoted)").forEach(function(actions) {
    actions.querySelector(".arrow-up").click();
  });
}

window.addEventListener('ruqesinfinitescrollload', function() {
  upvoteAllPosts();
});

window.addEventListener('load', function() {
  upvoteAllPosts();
  upvoteAllComments();
}, false);