您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script automatically roams random shops and stops when you are going to buy an item and resumes after.
// ==UserScript== // @name Subeta Auto-Roaming // @description This script automatically roams random shops and stops when you are going to buy an item and resumes after. // @version 1 // @match *://subeta.net/shop.php?shop* // @grant none // @icon https://subeta.net/favicon.ico // @icon64 https://img.subeta.net/items/bottle_apothecary_09.gif // @namespace https://greasyfork.org/users/133026 // ==/UserScript== var timeout; timeout = setTimeout(function () { var items = [32,41,36,17,20,6,26,9,5,19,47,11,31,2,22,14,46,23,25,21,12,44,29,49,40,27,34,28,37,24,45,39,42,4,16,30]; var item = items[Math.floor(Math.random()*items.length)]; var shoplink = "https://subeta.net/shop.php?shopid=" + item; window.location.href = shoplink; },5030); document.onmousemove = function(){ clearTimeout(timeout); timeout = setTimeout(function () { var items = [32,41,36,17,20,6,26,9,5,19,47,11,31,2,22,14,46,23,25,21,12,44,29,49,40,27,34,28,37,24,45,39,42,4,16,30]; var item = items[Math.floor(Math.random()*items.length)]; var shoplink = "https://subeta.net/shop.php?shopid=" + item; window.location.href = shoplink; },5330); };