在您安裝前,Greasy Fork希望您了解本腳本包含“負面功能”,可能幫助腳本的作者獲利,而不能給你帶來任何收益。
作者從這份腳本獲得佣金, 例如透過重寫連結或提供優惠券代碼以加入推薦或附屬代碼
腳本的作者解釋:
Directs to a referral link when not logged in
Forces HTTPS and auto-claims Coin when ready
// ==UserScript== // @name helpfpcoin.site Faucet HTTPS Enforcer + Autoclaim // @namespace ViolentMonkey // @version 1.0 // @description Forces HTTPS and auto-claims Coin when ready // @author Wphelp // @match *://helpfpcoin.site/faucet/doge* // @grant none // @antifeature referral-link Directs to a referral link when not logged in // @license Copyright Wphelp // @run-at document-end // ==/UserScript== (function() { 'use strict'; // 🔥 FORCE HTTPS REDIRECTION (BYPASS HTTP TRAPS) if (location.protocol !== 'https:') { const rebelRedirect = () => { const newUrl = `https://helpfpcoin.site/faucet/doge${location.search || ''}`; console.log(`[REBEL] Nuclear redirect to HTTPS: ${newUrl}`); location.replace(newUrl); }; // Execute after 1.5s to avoid redirect loops setTimeout(rebelRedirect, 1500); return; // Terminate script on HTTP page } // 💣 AUTO-CLAIM PROTOCOL (HTTPS VERSION) const claimBtn = document.getElementById('claimBtns'); const timerEl = document.getElementById('nextClaimTimer'); const detonateClaim = () => { if (claimBtn) { console.log("[REBEL] Detonating claim button!"); claimBtn.click(); return true; } console.warn("[REBEL] Claim button not found - mission aborted"); return false; }; const scanForReadiness = () => { if (!timerEl) { console.error("[REBEL] Timer element missing - enemy countermeasures detected"); return; } if (/ready/i.test(timerEl.textContent.trim())) { console.log("[REBEL] Status: READY - initiating attack sequence"); setTimeout(detonateClaim, 2000); // Stealth delay } else { console.log(`[REBEL] Status: ${timerEl.textContent} - continuing surveillance`); } }; // 🚀 MAIN OPERATION console.log("[REBEL] Secure zone established (HTTPS) - commencing autoclaim protocol"); setInterval(scanForReadiness, 3000); // Scan every 3 seconds })();