How generous

wtf i love communism now

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==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);