鈵譯這有毒XD
当前为
// ==UserScript==
// @name Kevin-小米-2019christmas
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 鈵譯這有毒XD
// @author Zhu
// @match https://event.mi.com/tw/sales2019/christmas
// @include https://event.mi.com/tw/sales2019/*
// @grant none
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
(function() {
'use strict';
var button = $("a[data-id=‘6‘]");//忘了更新,等11點
var fuc = setInterval(function() {
if($(".counter").length > 0){
window.clearInterval(fuc);
} else {
button.click();
}
},1000);
})();