您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto-claim and hide ads without breaking claim system on liteonion.online
// ==UserScript== // @name L o // @namespace http://tampermonkey.net/ // @version 2 // @description Auto-claim and hide ads without breaking claim system on liteonion.online // @author 👽 // @match https://liteonion.online/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Step 1: Hide ads with CSS instead of removing them const style = document.createElement('style'); style.innerHTML = ` iframe[src*="ads"], iframe[src*="banner"], .adsbygoogle, #ads, .ad, [id^="ad_"], [class*="ad-"], [class^="ad_"], div[style*="z-index: 9999"] { visibility: hidden !important; opacity: 0 !important; height: 1px !important; width: 1px !important; pointer-events: none !important; } `; document.head.appendChild(style); // Step 2: Auto-claim logic window.addEventListener('load', () => { setTimeout(() => { const claimButton = document.querySelector('#subbutt'); if (claimButton) { claimButton.click(); console.log('Claim Now button clicked!'); } else { console.log('Claim Now button not found.'); } // Step 3: Wait another 6 seconds then reload setTimeout(() => { location.reload(); console.log('Page refreshed!'); }, 6000); }, 7000); }); })();