How generous

wtf i love communism now

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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