Disable URLCash

By Anmar Mansur Last update Feb 8, 2009 — Installed 2,120 times.
// ==UserScript==
// @name           Disable URLCash
// @namespace      http://greasemonkey.anmarmansur.com/
// @description    Prevent the URLCash frame from loading.
// @include        http://*.urlcash.net/
// ==/UserScript==

if (document.title) {
	location.href = document.title.slice(1, -1);
}