Skip to content

Instantly share code, notes, and snippets.

@LouCypher
Last active August 29, 2015 14:01
Show Gist options
  • Save LouCypher/65926e78ab75a191863d to your computer and use it in GitHub Desktop.
Save LouCypher/65926e78ab75a191863d to your computer and use it in GitHub Desktop.
/* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://www.wtfpl.net/ for more details. */
// ==UserScript==
// @id hulkload@loucypher
// @name HulkLoad - No Popup
// @namespace https://github.com/LouCypher/userscripts
// @version 1.0
// @license WTFPL
// @include http://hulkload.com/*
// @grant none
// ==/UserScript==
(function(aWindow) {
document.removeEventListener("click", aWindow.checkTarget);
var checkbox = document.getElementById("spnsrdld");
if (checkbox) {
checkbox.checked = false;
checkbox.onclick = null;
}
})((typeof unsafeWindow === "object") ? unsafeWindow : window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment