Steam Auto-Like

Steam Auto-Like everything on page load

Version vom 06.05.2020. Aktuellste Version

// ==UserScript==
// @name         Steam Auto-Like
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Steam Auto-Like everything on page load
// @author       andwan0
// @match        https://*/*
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_setClipboard
// @grant        unsafeWindow
// @grant        window.close
// @grant        window.focus
// @require      https://code.jquery.com/jquery-3.5.1.min.js
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.querySelectorAll("a[id^=vote_up]:not(.active)").forEach(
        function(item) {item.click()}
    );

})();