您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
n+1
// ==UserScript== // @name enum +1auto // @description n+1 // @include https://freebitco.in/* // @require https://greasyfork.org/scripts/438589-bibln-1/code/bibln+1.js?version=1008853 // @require https://greasyfork.org/scripts/439370-butonclick/code/butonclick.js?version=1013976 // @version 1.0.4 // @license MIT // @namespace Kaznacheev // ==/UserScript== $('#double_your_btc_stake').val("0.00000002"*1); $('#double_your_btc_payout_multiplier').val("3.02"); butonclick(); $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event) { if ($(event.currentTarget).is(':contains("lose")')) { l(); setTimeout(butonclick(),20000); } }); $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event) { if ($(event.currentTarget).is(':contains("win")')) { w(); setTimeout(butonclick(),45000); } });