Dont Require Email
No Comments » | This post was viewed 3270 times.
Pre-fill a fake email address on WordPress / MT / TypePad comment forms
This is a Greasemonkey is a plugin for the Firefox web browser
// Dont Require Email // version 0.1 // 28 May 2005 // Copyright (c) 2005, Adam Vandenberg // Released under the GPL license // http://www.gnu.org/copyleft/gpl.html // // -------------------------------------------------------------------- // // This is a Greasemonkey user script. // // To install, you need Greasemonkey: http://greasemonkey.mozdev.org/ // Then restart Firefox and revisit this script. // // Under Tools, there will be a new menu item to "Install User Script". // Accept the default configuration and install. // // To uninstall, go to Tools/Manage User Scripts, // select "Dont Require Email", and click Uninstall. // // ==UserScript== // @name Dont Require Email // @namespace http://adamv.com/greases/ // @description Pre-fill a fake email address on WordPress / MT / TypePad comment forms // @include * // ==/UserScript== (function(){ var theForm = document.forms["comments_form"] || document.forms["commentform"]; if (theForm){ var theEmail = theForm.elements["email"]; if (theEmail){ if (theEmail.value=="") theEmail.value = "spam@spam.spam"; } } })();
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Leave a Reply