您需要先安装一个扩展,例如 篡改猴、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 https://imgheybox.max-c.com/avatar/2021/11/09/f93babd9c2e98dadd71849435f90cb51.jpeg // @run-at document-end // @namespace https://xiaoheihe.cn/community/7216/list/83188884 // ==/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);