// ==UserScript== // @name uplibra自动点击 // @namespace http://tampermonkey.net/ // @version 0.3 // @description try to take over the world! // @author sakuta // @match https://uplibra.io/dashboard // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(function(){ var buy = document.getElementById('yj_lottery_btn_open');//给你的a标签加一个id :btnBuy buy.click(); }); })();