lswank / Humble Bundle Steam - Autoregister New Product

// ==UserScript==
// @name         Humble Bundle Steam - Autoregister New Product
// @namespace    http://www.lswank.com/
// @version      0.1
// @description  Automatically click the "Accept and Register" bits on the Steam key registration page. Best when used with the "Register with Steam" option on Humble Bundle.
// @author       LSwank
// @license MIT
// @match        https://store.steampowered.com/account/registerkey*
// @grant        none
// ==/UserScript==

(function () {
  'use strict';

  // Your code here...
  document.getElementsByName("accept_ssa")[0].checked = true;
  if (document.getElementsByName("product_key")[0].value != "") RegisterProductKey();
})();