// ==UserScript== // @name 2019米粉10元 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author Lin // @match *://event.mi.com/tw/mff2019/sales/* // @grant none // @require http://code.jquery.com/jquery-3.3.1.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; function correct_time(){ var flag = false; var d = new Date(); var hours = d.getHours(); var min = d.getMinutes(); var sec = d.getSeconds(); if((hours == 10 && min <=1) || ( hours == 9 && min == 59 && sec == 59) || (hours == 12 && min <=1) || ( hours == 11 && min == 59 && sec == 59) || (hours == 15 && min <=1) || ( hours == 14 && min == 59 && sec == 59) || (hours == 18 && min <=1) || ( hours == 17 && min == 59 && sec == 59)){ flag = true; } return flag } function checkForMoniDisplayChange () { if(correct_time()){ $(".buy-now.J_flashBuyBtn").click() } } $(".buy-now.J_flashBuyBtn").removeAttr("disabled"); window.setInterval (checkForMoniDisplayChange, 1); })();