Last active
July 14, 2024 22:07
-
-
Save juvian/a50bc06aad0f7f5910f950003feee1f8 to your computer and use it in GitHub Desktop.
Fixes ruffle in order to be able to send scores
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
// ==UserScript== | |
// @name Neopets Ruffle fix | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Fixes ruffle in order to be able to send scores | |
// @author juvian | |
// @match https://www.neopets.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=neopets.com | |
// @grant GM_webRequest | |
// ==/UserScript== | |
GM_webRequest([ | |
{ selector: '*neopets.com/games/play_flash.phtml*', action: 'cancel' }, | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment