// ==UserScript== // @name 2022京东淘宝自动领红包 // @namespace http://tampermonkey.net/ // @version 0.3 // @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 { document.getElementsByClassName("index-module__union-coupon-button___1grbK union-main-receive-btn index-module__animate-pulse___YnSfN")[0].click(); 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) }