// ==UserScript== // @name Powerline.io mod menu // @namespace http://tampermonkey.net/ // @version 15.0 // @description Press the mod menu button, then once you exit the menu press ctrl/control to use the mods! // @require http://code.jquery.com/jquery-3.4.1.min.js // @author shed_modz_ // @match powerline.io // @grant none // @downloadURL none // ==/UserScript== window.onload = function() { document.getElementById("firstRightBox").innerHTML = "Press ctrl to see the stats change!"; }; //Make mod menu button $("#firstRightBox").after('
'); $('#menubtn').click(function() { var menu = window.open("", "", "width=250,height=400"); //css menu.document.write(''); //js //make script menu.document.write(''); //menu content menu.document.write('

Shed Menu

'); menu.document.write('

Menu options:

'); //menu.document.write('

press enter to save

'); menu.document.write('

Score hacks:


'); menu.document.write(''); menu.document.write(''); menu.document.write("

This mod menu is still being made, I just wanna see how you guys like it. PLEASE message me on discord about your feed back! Sincere your's truly~shed_modz_"); menu.document.write('Click here to join the discrod'); e }); function o() { window.open("", "", "width=233,height=400"); } window.addEventListener('keydown', mod, false); function mod(i) { if(i.keyCode === 17) { var score = localStorage.getItem('score'); var bscore = localStorage.getItem('bestLength'); document.getElementById('stat-length').innerHTML = score; document.getElementById('stat-blength').innerHTML = bscore; } }