12345678910111213141516171819202122232425262728293031323334353637
// ==UserScript==// @name steam批量取消关注// @namespace http://tampermonkey.net/// @version 0.1// @description try to take over the world!// @author You// @include /^https?:\/\/steamcommunity\.com\/id\/\w+\/followedgames\/?$/// @grant GM_addStyle// ==/UserScript==(function () { 'use strict'; function run() { // return alert(666) var $btn = jQuery('<button>取消本页所有关注</button>'); $btn.addClass('btn-batch'); jQuery('#tabs_basebg').prepend($btn); GM_addStyle(`#tabs_basebg > .btn-batch { color: #67c1f5; background-color: #274155; cursor: pointer; border: 1px solid #67c1f5; margin-bottom: 10px; }`) $btn.click(function () { const btns = jQuery('.unfollow_game_btn') btns.each((index,ele)=>{ setTimeout(()=>{ $(ele).click() }, index*500) }) }); } run();})();
首先怎么安装就不详细说了,去火狐、chrome或edge的应用商店搜索Tampermonkey安装即可。官网在此:https://www.tampermonkey.net
配置说明
这篇文章转自掘金(https://juejin.cn/post/7138346293042085924),转载到这里一方面是因为掘金的排版不习惯,一方面当做收藏方便我随时回忆
从 Java 转 Python 转 JavaScript 的三姓家奴,编程江湖里猥琐发育的卡拉米,极客精神的拙劣践行者,原二次元萌豚,现中二病康复期🤪 生命不息,折腾不止。