// ==UserScript==
// @name        Cornify Everything
// @author      Kees Cook
// @version     1.0
// @namespace   http://outflux.net/greasemonkey
// @description Adds Cornify button to everything
// @include     *
// @license     GNU General Public License
// ==/UserScript==

div = document.createElement('div');
div.innerHTML = '<a href="http://www.cornify.com" onclick="cornify_add();return false;"><img src="http://www.cornify.com/assets/cornify.gif" width="61" height="16" border="0" alt="Cornify" /></a><script type="text/javascript" src="http://www.cornify.com/js/cornify.js"></script>';
document.body.appendChild(div);

