Delete Twitter Messages

By MrPatan Last update May 3, 2008 — Installed 1,364 times. Daily Installs: 5, 2, 2, 4, 4, 4, 1, 2, 5, 4, 4, 7, 1, 5, 5, 0, 5, 9, 1, 1, 6, 3, 9, 7, 11, 5, 6, 1, 3, 5, 6, 4
// ==UserScript==
// @name           Delete Twitter Messages
// @namespace      victor.rodriguez.name
// @description    Delete your twitter direct messages. Victor Rodriguez Gil victor.rodriguez.gil@gmail.com
// @include        http://twitter.com/direct_messages*
// ==/UserScript==
var prevUrl = GM_getValue("previousUrl");
if(prevUrl && prevUrl!='' && prevUrl!=document.location.href){
    GM_setValue("previousUrl",'')
    document.location.href = prevUrl;
}

var aAs = document.getElementsByTagName("a");
for(var i=0;i<aAs.length;i++){
    var el = aAs[i];
    if(/twitter.com\/direct_messages\/destroy/.test(el.href)){
        document.location.href=el.href;
        GM_setValue("previousUrl",document.location.href);
        return;
    }
}