您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skip menantisenja, pafpaf, gametime
当前为
// ==UserScript== // @name Auto click redirector // @namespace https://openuserjs.org/users/Riztard/scripts // @version 1.2 // @description Skip menantisenja, pafpaf, gametime // @author Riztard // @match *menantisenja.com* // @include *menantisenja.com* // @match *pafpaf.info* // @include *pafpaf.info* // @match *gametime.web.id* // @include *gametime.web.id* // @grant none // @icon https://www.shareicon.net/download/2015/08/23/89640_forward.ico // ==/UserScript== if (window.top != window.self) //-- Don't run on frames or iframes return; (function() { 'use strict'; if (window.location.href.indexOf("menantisenja.com/?") != -1) { $('.sorasubmitss')[0].click(); } else if (window.location.href.indexOf("menantisenja.com/2") != -1) { location.href = "javascript:void(changeLink());"; } else if (window.location.href.indexOf("pafpaf") != -1) { window.location.href = $('#myy-buttons').attr('href'); } else if (window.location.href.indexOf("gametime") != -1) { $('#klik')[0].click(); window.location.href = $('#generate a').attr('href'); } })();