dwindly auto clicker

dwindly auto click.

  1. // ==UserScript==
  2. // @name dwindly auto clicker
  3. // @name:ja dwindlyを自動でクリック
  4. // @namespace http://dwindlyautoclicker/
  5. // @version 1.0
  6. // @description dwindly auto click.
  7. // @description:ja dwindlyを自動でクリック。スキップもできるかも
  8. // @author plgdown
  9. // @include *://dwindly.io/*
  10. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
  11. // @grant none
  12. // @run-at document-end
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. if(document.getElementById("btd1") != null){
  17. document.getElementById("btd1").click();
  18. }else if(document.getElementById("btd") != null){
  19. var a = $("script:contains('window.open(encD')").html();
  20. document.location.href = encD(a.split("window.open(")[1].split(",")[0].split("\"")[1]);
  21. };
  22. })();