doggdot.us anti link-tracking

By pwlin Last update May 19, 2007 — Installed 243 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name          	doggdot.us anti link-tracking
// @namespace    http://userscripts.org/scripts/show/6847
// @version	0.2 (May 19th, 2007)  
// @description  doggdot.us tracks outgoing links. This script will kill that. 
// @include       	http://doggdot.us/*
// @include       	http://*.doggdot.us/*
// ==/UserScript==
(function(){
	try{
		var allAnchors = document.getElementsByTagName("a");
		for (var i =0,k=allAnchors.length;i<k;i++){
			allAnchors[i].removeAttribute("onclick");
			allAnchors[i].removeAttribute("onmousedown");
		}
	}
	catch(e){}
})();