Tuesday, 17 February 2009
Delicious Login
« IPv6 Yikes | Main | Troubling Banner Ads »For some reason, perhaps security, the fine folks at delicious set the autocomplete attribute for the login page to "off" thus disabling the firefox password manager. It drives me loopy. Grease Monkey to the rescue!
// ==UserScript==
// @name Delicious Login
// @namespace http://unsyntax.net/
// @description Enable autologin with delicious
// @include https://secure.delicious.com/login*
// ==/UserScript==
(function () {
var inputs=document.getElementsByTagName("input");
for (var i=0; i < inputs.length; i++) {
if (inputs.item(i).getAttribute("autocomplete")) {
inputs.item(i).removeAttribute("autocomplete");
}
}
})()
Posted by at 7:15 PM in Tools and Programming
[Trackback URL for this entry]
