// ==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 = '' +
'
' +
'' +
'
' +
'' +
'
';
select.parentNode.replaceChild(div,select);