Skip to content

Instantly share code, notes, and snippets.

@BenjaminUrquhart
Last active September 15, 2022 08:29
Show Gist options
  • Save BenjaminUrquhart/639f7be5a26d3068b8e1af6b0781d908 to your computer and use it in GitHub Desktop.
Save BenjaminUrquhart/639f7be5a26d3068b8e1af6b0781d908 to your computer and use it in GitHub Desktop.
Always Maraca
// ==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