Demonoid Auto Check "I understand and agree to the rules"

By JoeSimmons Last update Jan 13, 2009 — Installed 232 times.
// ==UserScript==
// @name           Demonoid Auto Check "I understand and agree to the rules"
// @namespace      http://userscripts.org/users/23652
// @description    Auto checks the checkbox that says you agree to the rules
// @include        http://www.demonoid.com/torrent_upload.php5
// @copyright      JoeSimmons
// ==/UserScript==

box = document.getElementById('agree');

if(box && typeof box!='undefined' && box!=null) box.checked = true;