pootz / Auto Accept Java License Agreement on Oracle

// ==UserScript==
// @name        Auto Accept Java License Agreement on Oracle
// @namespace   pootz
// @description Auto Accept Java License Agreement on Oracle
// @include     http://www.oracle.com/technetwork/java/*/downloads/*-downloads-*.html
// @include     http://www.oracle.com/technetwork/java/*/downloads/*-netbeans-*-*.html
// @version     1.0
// @history     -
// @require     https://code.jquery.com/jquery-2.2.3.min.js
// @updateURL   https://openuserjs.org/meta/pootz/Auto_Accept_Java_License_Agreement_on_Oracle.meta.js
// @downloadURL https://openuserjs.org/install/pootz/Auto_Accept_Java_License_Agreement_on_Oracle.user.js
// @grant       GM_addStyle
// ==/UserScript==


$(':radio:not(:checked)').each(function(){
    $(this)[0].click();
});