返回首頁 

Greasy Fork is available in English.

flappybird.io CHEAT

Directly post any score to the leaderboard


Installer ce script?
// ==UserScript==// @name         flappybird.io CHEAT// @namespace    http://tampermonkey.net/// @version      2024-10-05// @description  Directly post any score to the leaderboard// @license MIT// @author       Doesn't matter// @match        https://flappybird.io/*// @icon         https://www.google.com/s2/favicons?sz=64&domain=flappybird.io// @grant        GM_xmlhttpRequest// @grant        GM_openInTab// ==/UserScript==(function() {'use strict';// Create container for inputs and buttonsconst container = document.createElement('div');container.style.position = 'fixed';container.style.top = '50%';container.style.right = '10px';container.style.transform = 'translateY(-50%)';container.style.zIndex = '1000';// Input for changing countconst inputCount = document.createElement('input');inputCount.type = 'number';inputCount.placeholder = 'Change count';container.appendChild(inputCount);// Button to change countconst changeCountButton = document.createElement('button');changeCountButton.textContent = 'CHANGE COUNT';container.appendChild(changeCountButton);document.body.appendChild(container);// Event listener for changing countchangeCountButton.addEventListener('click', () => {const newCount = inputCount.value;if (!newCount) {alert('Please enter a count value.');return;}// Simulate typing the new count into the consoleconst script = document.createElement('script');script.textContent = `counter.text = ${newCount};`;document.body.appendChild(script);document.body.removeChild(script); // Remove the script after executionalert(`Count changed to: ${newCount}`);});})();