// ==UserScript== // @name 2022京东淘宝自动领红包 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 自动领取红包 // @author You // @match https://prodev.jd.com/mall/active/3RiABUPHkTTz7sGcEFowgMMytyc1/index.html?* // @match https://pages.tmall.com/wow/z/lianmeng/default/route-lianmeng-index?* // @license MIT License // @grant none // @downloadURL none // ==/UserScript== window.onload = function() { setTimeout(function() { try { var local = location.href; document.getElementsByClassName("index-module__union-coupon-button___1grbK union-main-receive-btn index-module__animate-pulse___YnSfN")[0].click(); setTimeout(function() { window.open('https://u.jd.com/JtkwjNz'); setTimeout(function() {window.close()}, 1000); }, 1000); } catch(err){ try { if(document.getElementsByClassName("index-module__h1___1vPTg index-module__wx___36nAw")[0].innerText == "今日机会已用完") window.open('https://s.click.taobao.com/VOVhAXu'); } catch(err){ document.getElementsByClassName("mm_wf_scale J_click_proxy")[0].click(); setTimeout(function() {window.close()}, 1000); } } }, 1000) }