Automatically clicks the cat on the PopCat website at a faster rate and provides additional features when the Z key is pressed.
当前为
// ==UserScript==
// @name PopCat Auto Clicker + Menu (Improved)
// @namespace https://popcat.click
// @version 2.0
// @description Automatically clicks the cat on the PopCat website at a faster rate and provides additional features when the Z key is pressed.
// @author HiraganaDev
// @match https://popcat.click/*
// @grant none
// @icon https://popcat.click/icons/favicon.ico
// ==/UserScript==
(function () {
var autoClickInterval = null;
var autoClickTimer = null;
var autoClickEnabled = false;
var isActiveMenu = false;
var menuElement = null;
var clickCount = 0;
document.addEventListener("keydown", function (event) {
if (event.key === "z") {
toggleMenu();
}
});
document.addEventListener("click", function (event) {
var target = event.target;
if (isActiveMenu && target !== menuElement && !menuElement.contains(target)) {
closeMenu();
}
});
function toggleMenu() {
if (!isActiveMenu) {
showMenu();
} else {
closeMenu();
}
}
function startAutoClick() {
autoClickEnabled = true;
autoClickInterval = setInterval(function () {
clickCat();
}, 1);
autoClickTimer = setTimeout(function () {
clearInterval(autoClickInterval);
autoClickEnabled = false;
showAutoClickStats();
resetClickStats();
}, 60000);
}
function stopAutoClick() {
autoClickEnabled = false;
clearInterval(autoClickInterval);
clearTimeout(autoClickTimer);
}
function clickCat() {
document.dispatchEvent(new KeyboardEvent("keydown", { key: "a", ctrlKey: true }));
document.dispatchEvent(new KeyboardEvent("keyup", { key: "a" }));
clickCount++;
}
function showMenu() {
isActiveMenu = true;
menuElement = document.createElement("div");
menuElement.style.position = "fixed";
menuElement.style.top = "50%";
menuElement.style.left = "50%";
menuElement.style.transform = "translate(-50%, -50%)";
menuElement.style.width = "300px";
menuElement.style.padding = "20px";
menuElement.style.backgroundColor = "#ffffff";
menuElement.style.border = "2px solid #f00";
menuElement.style.borderRadius = "20px";
menuElement.style.textAlign = "center";
menuElement.style.fontFamily = "Arial, sans-serif";
menuElement.style.boxShadow = "0 0 10px rgba(0, 0, 0, 0.3)";
menuElement.style.color = "#222222";
var title = document.createElement("h1");
title.innerText = "PopCat Auto Clicker Menu";
title.style.marginTop = "0";
title.style.marginBottom = "20px";
var autoClickToggle = document.createElement("div");
autoClickToggle.innerText = "Autoclick: " + (autoClickEnabled ? "On (" + clickCount + " clicks)" : "Off");
autoClickToggle.style.cursor = "pointer";
autoClickToggle.style.marginBottom = "20px";
autoClickToggle.style.fontSize = "18px";
autoClickToggle.style.color = autoClickEnabled ? "#00ff00" : "#ff0000";
autoClickToggle.addEventListener("click", function () {
if (autoClickEnabled) {
stopAutoClick();
autoClickToggle.innerText = "Autoclick: Off";
autoClickToggle.style.color = "#ff0000";
} else {
startAutoClick();
autoClickToggle.innerText = "Autoclick: On (" + clickCount + " clicks)";
autoClickToggle.style.color = "#00ff00";
}
});
var resetStatsButton = document.createElement("button");
resetStatsButton.innerText = "Reset Click Stats";
resetStatsButton.style.backgroundColor = "#ff0000";
resetStatsButton.style.color = "#ffffff";
resetStatsButton.style.border = "none";
resetStatsButton.style.cursor = "pointer";
resetStatsButton.style.fontSize = "16px";
resetStatsButton.style.padding = "8px 16px";
resetStatsButton.style.marginTop = "10px";
resetStatsButton.addEventListener("click", function () {
resetClickStats();
});
var newFeature = document.createElement("p");
newFeature.innerText = "New Feature: Fix autoclick";
newFeature.style.marginTop = "40px";
newFeature.style.fontSize = "14px";
var credits = document.createElement("p");
credits.innerText = "Developed by HiraganaScr";
credits.style.fontSize = "12px";
credits.style.marginTop = "20px";
menuElement.appendChild(title);
menuElement.appendChild(autoClickToggle);
menuElement.appendChild(resetStatsButton);
menuElement.appendChild(newFeature);
menuElement.appendChild(credits);
document.body.appendChild(menuElement);
}
function showAutoClickStats() {
var popupElement = document.createElement("div");
popupElement.style.position = "fixed";
popupElement.style.top = "50%";
popupElement.style.left = "50%";
popupElement.style.transform = "translate(-50%, -50%)";
popupElement.style.width = "240px";
popupElement.style.height = "120px";
popupElement.style.background = "#ffffff";
popupElement.style.border = "1px solid #cccccc";
popupElement.style.borderRadius = "8px";
popupElement.style.padding = "20px";
popupElement.style.textAlign = "center";
popupElement.style.fontFamily = "Arial, sans-serif";
popupElement.style.boxShadow = "0 0 10px rgba(0, 0, 0, 0.2)";
var clicksInfo = document.createElement("div");
clicksInfo.style.fontSize = "16px";
clicksInfo.style.marginBottom = "10px";
clicksInfo.innerText = "Total Clicks: " + clickCount;
popupElement.appendChild(clicksInfo);
document.body.appendChild(popupElement);
setTimeout(function () {
document.body.removeChild(popupElement);
}, 3000);
}
function resetClickStats() {
clickCount = 0;
}
function closeMenu() {
isActiveMenu = false;
if (menuElement) {
document.body.removeChild(menuElement);
}
stopAutoClick();
}
})();
//Thanks for using !