Greasy Fork

Greasy Fork is available in English.

BOBO米

try to take over the world!

目前为 2020-11-10 提交的版本,查看 最新版本

// ==UserScript==
// @name         BOBO米
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       bossrush
// @match        https://event.mi.com/tw/double-11-2020/supersales
// @grant        none
// ==/UserScript==

(function($) {
    'use strict';
    function checkForMoniDisplayChange () {
        $(".J_couponArea[data-coupon-id=1618]").removeAttr("aria-disabled")[0].click();
        $(".J_couponArea[data-coupon-id=1616]").removeAttr("aria-disabled")[0].click();
        $(".J_couponArea[data-coupon-id=1617]").removeAttr("aria-disabled")[0].click();
    }

window.setInterval (checkForMoniDisplayChange, 10);


})();