-
-
Save mingtsay/9942334 to your computer and use it in GitHub Desktop.
Cheat script for www.oppose.tw
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
(function() { | |
$btnYes = $('.btn-yes')[0]; | |
$btnNo = $('.btn-no' )[0]; | |
$content = $('.show-content')[0]; | |
function cheat() { | |
if (l = $content.innerHTML.length) { | |
l % 2 ? $btnNo.click() : $btnYes.click(); | |
} | |
setTimeout(cheat); | |
} | |
cheat(); | |
}).call(this); |
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
(function() { | |
_Yes = '#2ECC71'; | |
_No = '#E74C3C'; | |
_ = '#425B75'; | |
$content = $('.show-content')[0]; | |
function cheat() { | |
$content.style.color = ((l = $content.innerHTML.length) ? (l % 2 ? _No : _Yes) : _); | |
setTimeout(cheat, 200); | |
} | |
cheat(); | |
}).call(this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment