Disable URLCash

By Anmar Mansur Last update Feb 8, 2009 — Installed 737 times. Daily Installs: 3, 5, 4, 1, 2, 2, 1, 3, 2, 1, 0, 0, 4, 0, 2, 2, 6, 0, 2, 7, 1, 0, 0, 4, 4, 0, 4, 0, 1, 5, 1, 3
// ==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);
}