proekt

n+1

当前为 2022-01-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name proekt
  3. // @description n+1
  4. // @include https://freebitco.in/*
  5. // @require https://greasyfork.org/scripts/438589-bibl/code/bibl.js?version=1008830
  6. // @version 1.0.1.
  7. // @license MIT
  8. // @namespace Kaznacheev
  9. // ==/UserScript==
  10.  
  11. $('#double_your_btc_stake').val("0.00000002"*1);
  12.  
  13.  
  14. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event) {
  15. if ($(event.currentTarget).is(':contains("lose")')) {
  16. l();
  17. }
  18. });
  19.  
  20.  
  21. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event) {
  22. if ($(event.currentTarget).is(':contains("win")')) {
  23. w();
  24. }
  25. });