dwindly auto clicker

dwindly auto click.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name            dwindly auto clicker
// @name:ja         dwindlyを自動でクリック
// @namespace       http://dwindlyautoclicker/
// @version         1.0
// @description     dwindly auto click.
// @description:ja  dwindlyを自動でクリック。スキップもできるかも
// @author          plgdown
// @include         *://dwindly.io/*
// @require         https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
// @grant           none
// @run-at          document-end
// ==/UserScript==

(function() {
  if(document.getElementById("btd1") != null){
    document.getElementById("btd1").click(); 
  }else if(document.getElementById("btd") != null){
    var a = $("script:contains('window.open(encD')").html();
    document.location.href = encD(a.split("window.open(")[1].split(",")[0].split("\"")[1]);
  };
})();