Greasy Fork

stock

a1||a2||...||an||{lose...}=const

目前为 2022-01-26 提交的版本。查看 最新版本

// ==UserScript==
    // @name        stock
    // @description a1||a2||...||an||{lose...}=const
    // @include     https://freebitco.in/*
    // @require https://greasyfork.org/scripts/439102-bibln-2/code/bibln+2.js?version=1012397
    // @version 1.0.0.
    // @license MIT
    // @namespace Kaznacheev
    // ==/UserScript==
var betodss=prompt("задайте константу вероятности", "2");

$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event) {
   if ($(event.currentTarget).is(':contains("lose")')) {

     odds(betodss);
   }
 });
 
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event) {
   if ($(event.currentTarget).is(':contains("win")')) {

     $('#double_your_btc_payout_multiplier').val((betodss).toString()+".00");
   }
 });