您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
自动领取掉宝库存页面奖励(此脚本由其他作者开源)
当前为
// ==UserScript== // @name Twitch掉宝自动领取 // @version 1.0 // @description 自动领取掉宝库存页面奖励(此脚本由其他作者开源) // @author 小黑盒:SUZIE 抖音:SUZIE // @match https://www.twitch.tv/drops/inventory* // @icon <a href="https://sm.ms/image/mvNDSLUa794Eetr" target="_blank"><img src="https://s2.loli.net/2022/06/17/mvNDSLUa794Eetr.jpg" ></a> // @run-at document-end // @namespace http://greasyfork.icu/zh-CN/users/767956-suz1e // ==/UserScript== const claimButton = '[data-test-selector="DropsCampaignInProgressRewardPresentation-claim-button"]'; var onMutate = function(mutationsList) { mutationsList.forEach(mutation => { if(document.querySelector(claimButton)) document.querySelector(claimButton).click(); }) } var observer = new MutationObserver(onMutate); observer.observe(document.body, {childList: true, subtree: true}); setInterval(function() { window.location.reload(); }, 1*60000);