Auto add to Google Reader

By Simon Lieschke Last update Apr 19, 2007 — Installed 11,553 times. Daily Installs: 12, 7, 11, 15, 19, 5, 11, 25, 15, 16, 14, 10, 13, 12, 9, 9, 10, 12, 14, 14, 13, 27, 25, 8, 10, 13, 13, 8, 9, 15, 15, 19
// ==UserScript==
// @name           Auto add to Google Reader
// @namespace      http://lieschke.net/projects/greasemonkey/
// @description    Bypasses the "Add to Google homepage"/"Add to Google Reader" choice, directly adding to Google Reader.
// @include        http://www.google.com/ig/add?feedurl=*
// ==/UserScript==

(function() {
	var anchors = document.getElementsByTagName('a');
	for (var i = 0; i < anchors.length; i++) {
		if (anchors[i].innerHTML == "Add to Google Reader") {
			document.location.href = anchors[i].href;
		}
	}
})();