Hello, {USERNAME}!
// For USERNAME = "Anurag"
Hello, Anurag
| // ==UserScript== | |
| // @name AutoFarm RPG | |
| // @namespace automatron | |
| // @version 0.1.0 | |
| // @description Farm RPG shortcuts to make your life easy | |
| // @author Automatron | |
| // @match https://farmrpg.com/* | |
| // @match https://alpha.farmrpg.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=farmrpg.com | |
| // @license MIT |
| (function () { | |
| if (!window._shadowCursor) { | |
| window._shadowCursor = document.createElement("img"); | |
| document.body.appendChild(window._shadowCursor); | |
| window._shadowCursor.style = ` | |
| height: 32px; | |
| width: 32px; | |
| position: fixed; | |
| z-index: 99999999; |