您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically clicks shortlink buttons. Made in Trinidad - https://ouo.io/5D5F0X
// ==UserScript== // @name Cryptofy . Auto Shortlinks (NOT WORKING) // @namespace cryptofy.autoshortlinks // @version 1.2 // @description Automatically clicks shortlink buttons. Made in Trinidad - https://ouo.io/5D5F0X // @author stealtosvra // @match https://cryptofy.club/* // @icon https://www.google.com/s2/favicons?sz=64&domain=cryptofy.club // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; if (window.location.href.includes('https://cryptofy.club/')) { const email = '[email protected]'; // INSERT YOUR EMAIL const emailInput = document.querySelector('input[name="email"]'); if (document.querySelector('input[name="email"]')) { emailInput.value = email;}} if (window.location.href === 'https://cryptofy.club/home.php' && window.location.href !== 'https://link1s.com/1rFj1U') { window.location.href = 'https://cryptofy.club/short.php'; } else { setTimeout(() => { const loginButton = document.querySelector('button[name="btn-start"]'); loginButton.click(); }, 5000); // 5000 milliseconds = 5 seconds } if (window.location.href === 'https://cryptofy.club/short.php') { setTimeout(() => { // Select all buttons with type "submit" const buttons = document.querySelectorAll("button.btn.btn-block.btn-primary"); const bypassList = ['megaurl' , 'megafly' , 'linksly']; // Add the names of buttons to bypass buttons.forEach(buttons => { if (!bypassList.includes(buttons.name)) { buttons.click(); } }); }, 5000); // 5000 milliseconds = 5 seconds } })();