您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Steam 进入评测页面自动使用当前用户点赞
// ==UserScript== // @name Steam 进入评测页面自动点赞 // @namespace https://steamcommunity.com/id/GarenMorbid/ // @version 1.0 // @description Steam 进入评测页面自动使用当前用户点赞 // @author Garen // @match https://steamcommunity.com/id/*/recommended/* // @match https://steamcommunity.com/profiles/*/recommended/* // @grant none // ==/UserScript== (function() { // 批量点赞,支持好友动态以及评测动态 var list = document.getElementsByClassName('thumb_up'); // 需要点赞的动态数 var count = 0; // 循环遍历点赞 for(var i = 0;i < list.length; i++){ if (list[i].parentNode.parentNode.getAttribute('class').indexOf('active') == -1) { list[i].click(); count++; } } // 添加友好提示 if (count != 0) { // alert("已经为你点赞" + count + "动态~"); console.log("%c已经为你点赞" + count + "动态~ By Garen","color:white;font-weight:bold;font-family:'微软雅黑';background:#000;padding:5px;"); } else { // alert("目前没有动态可以点赞,请稍后再来~"); console.log("%c目前没有动态可以点赞,请稍后再来~ By Garen","color:white;font-weight:bold;font-family:'微软雅黑';background:#000;padding:5px;"); } })();