Greasy Fork

Greasy Fork is available in English.

Steam 商店、社区点赞点菜以及奖励按钮

让你不在担忧连坐封号的风险

目前为 2021-08-30 提交的版本,查看 最新版本

// ==UserScript==
// @name         Steam 商店、社区点赞点菜以及奖励按钮
// @namespace    https://steamcommunity.com/id/GarenMorbid
// @version      1.0
// @description  让你不在担忧连坐封号的风险
// @author       Garen
// @match        https://steamcommunity.com/id/*/home/
// @match        https://steamcommunity.com/profiles/*/home/
// @match        https://store.steampowered.com/app/*/
// @match        https://steamcommunity.com/id/*/recommended/
// @match        https://steamcommunity.com/profiles/*/recommended/
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// @grant        none
// ==/UserScript==

(function() {
    var thumb_up = $('.thumb_up');
    var thumb_down = $('.thumb_down');
    var thumb_upv6 = $('.thumb_upv6');
    var thumb_downv6 = $('.thumb_downv6');
    var funny = $('.funny');
    
    thumb_up.css("display", "none");
    thumb_down.css("display", "none");
    thumb_upv6.css("display", "none");
    thumb_downv6.css("display", "none");
    funny.css("display", "none");
})();