Last active
January 9, 2022 02:35
-
-
Save glued/683fbfb663a9199d03da4adac4b80d99 to your computer and use it in GitHub Desktop.
Gas Pump Golf Perfect score (https://gaspumpgolf.github.io/)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. https://gaspumpgolf.github.io/ | |
// 2. Click play | |
// 3. Open console | |
// 4. Paste code and press enter | |
const down = new MouseEvent("mousedown", { bubbles: true, cancelable: true, view: window }); | |
const up = new MouseEvent("mouseup", { bubbles: true, cancelable: true, view: window }); | |
const btn = document.querySelector('#content > button'); | |
const target = document.querySelector('#content > p:nth-child(3) > mark > strong'); | |
const sale = document.querySelector('#content > p:nth-child(5) > strong'); | |
const observer = new MutationObserver((val)=>{ | |
const saleValue = val[0].target.data; | |
const targetValue = document.querySelector('#content > p:nth-child(3) > mark > strong').textContent.substr(1); | |
if(saleValue === targetValue) btn.dispatchEvent(up); | |
}) | |
observer.observe(sale, {characterData: true, childList: true, subtree: true}); | |
const btnObserver = new MutationObserver((val)=>{ | |
if(!btn.disabled) btn.dispatchEvent(down); | |
}); | |
btnObserver.observe(btn, {attributes:true}) | |
btn.dispatchEvent(down); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment