Greasy Fork

Greasy Fork is available in English.

Steam 好友动态自动点赞

让Steam成为动态朋友圈,为她/他点赞o( ̄▽ ̄)d

目前为 2019-03-11 提交的版本,查看 最新版本

// ==UserScript==
// @name         Steam 好友动态自动点赞
// @namespace    https://steamcommunity.com/id/GarenMorbid/
// @version      1.1
// @description  让Steam成为动态朋友圈,为她/他点赞o( ̄▽ ̄)d
// @author       Garen
// @match        https://steamcommunity.com/id/*/home/
// @grant        none
// ==/UserScript==

// 自动刷新页面的时间默认设置为200s
var timeout = 200;
// 获取当前页面的URL链接
var locationUrl = location.href;
// 批量点赞,支持好友动态以及评测动态
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) {
  console.log("%c已经为你点赞" + count + "动态~ By Garen","color:white;font-weight:bold;font-family:'微软雅黑';background:#000;padding:5px;");
} else {
  console.log("%c目前没有动态可以点赞,请稍后再来~ By Garen","color:white;font-weight:bold;font-family:'微软雅黑';background:#000;padding:5px;");
}
// 自动刷新页面
setTimeout(function () {
    location.replace(locationUrl);
}, timeout * 1000);