Skip to content

Instantly share code, notes, and snippets.

@lionicsheriff
Created February 18, 2013 06:18
Show Gist options
  • Save lionicsheriff/4975413 to your computer and use it in GitHub Desktop.
Save lionicsheriff/4975413 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @id dft-always-show-dialoglog
// @name Show dialoglog
// @version 1.0
// @namespace dft
// @author Matthew Goodall
// @description
// @include http://mspaintadventures.com/*
// @run-at document-end
// ==/UserScript==
var spoiler = document.getElementsByClassName('spoiler')[0]
spoiler.style.display = 'block';
spoiler.previousSibling.style.display = 'none';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment