Greasy Fork

来自缓存

Greasy Fork is available in English.

uplibra自动点击

try to take over the world!

当前为 2019-12-29 提交的版本,查看 最新版本

// ==UserScript==
// @name         uplibra自动点击
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       sakuta
// @match        https://uplibra.io/dashboard
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $(function(){
    	setInterval(function(){
    		var buy = document.getElementById('yj_lottery_btn_open');//给你的a标签加一个id :btnBuy
    		buy.click();
    	},2000)//后面的500是以毫秒为单位。
    	$("#yj_lottery_countdown").click(function(){
	    	alert("成功!!!");
    	})
	});
})();