// ==UserScript==
// @name           AllConsuming: Radio "Worth It/Not Worth It"
// @namespace      http://www.rhyley.org/gm/
// @description    Replaces the "Worth It/Not Worth It" select box on AllConsuming with radio buttons (less clicks).
// @include        http://www.allconsuming.net/*
// ==/UserScript==


select = document.evaluate("//select[contains(@name,'worthness')]",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null).snapshotItem(0);
var div = document.createElement('div');
div.innerHTML = '<input id="ww" type="radio" name="worthness" value="wishy_washy" checked>' +
      '<label for="ww">Wishy washy</label><br>' +
      '<input id="worth" type="radio" name="worthness" value="worth_it">' +
      '<label for="worth">Worth consuming!</label><br>' +
      '<input id="not" type="radio" name="worthness" value="not_worth_it">' +
      '<label for="not">Not worth consuming</label><br>';

select.parentNode.replaceChild(div,select);
      
      
      