Last active
August 29, 2015 14:01
-
-
Save LouCypher/65926e78ab75a191863d to your computer and use it in GitHub Desktop.
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
/* 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