Delete Twitter Messages

By MrPatan Last update May 3, 2008 — Installed 1,463 times. Daily Installs: 0, 5, 9, 1, 1, 6, 3, 9, 7, 11, 5, 6, 1, 3, 5, 6, 4, 3, 4, 14, 4, 9, 6, 6, 11, 0, 9, 3, 12, 2, 9, 9
// ==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;
    }
}