Last active
September 15, 2022 08:29
-
-
Save BenjaminUrquhart/639f7be5a26d3068b8e1af6b0781d908 to your computer and use it in GitHub Desktop.
Always Maraca
This file contains hidden or 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 Always Maraca | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Always get the maraca dog on Deltarune's 404 page | |
// @author Benjamin Urquhart | |
// @match *://deltarune.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=deltarune.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
if(document.title === "room_dogcheck") { | |
$('#dog_sleep').addClass('hidden'); | |
$('#dog_maraca').removeClass('hidden'); | |
maraca = true; | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment