您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Take over Agarpowers easily with this script!
当前为
- // ==UserScript==
- // @name Vaqu's Script
- // @namespace http://tampermonkey.net/
- // @version 0.6
- // @description Take over Agarpowers easily with this script!
- // @author You
- // @match https://flarex.fun/
- // @icon https://www.google.com/s2/favicons?sz=64&domain=180.92
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- /*if (document.getElementById('overlays').style.display != 'none' || document.getElementById('advert').style.display != 'none') {
- return;
- }*/
- //var shieldKey = document.getElementById("shield").val()
- if (document.activeElement.type == 'text' || document.activeElement.type == 'password') {
- return;
- }
- setInterval(function(){
- $("#canvas").trigger($.Event("keydown", { keyCode: 72}));
- $("#canvas").trigger($.Event("keyup", { keyCode: 72}));
- }, 1600)
- var startGoldNick = setInterval(function(){
- document.getElementById('setGoldNickname').dispatchEvent(new MouseEvent("click"));
- }, 100)
- })();