// ==UserScript== // @name del.icio.us notes max length // @namespace http://www.rhyley.org/gm/ // @description tells you if the note you wrote was too long // @include http://del.icio.us/*url=* // ==/UserScript== textie = document.createElement('td'); textie.setAttribute('align','left'); textie.setAttribute('id','textie'); textie.setAttribute('class','smaller'); gmNotes = document.getElementById('notes'); gmNotes.parentNode.parentNode.insertBefore(textie,gmNotes.parentNode.nextSibling); GMupdateCc = function() { length = document.getElementById('notes').value.length; textie = document.getElementById('textie'); textie.innerHTML = ''; if (length > 253) { textie.setAttribute('style','color:#900;font-weight:bold'); textie.innerHTML = '254 characters max' } } GMupdateCc() gmNotes.addEventListener("keyup",GMupdateCc,true);