// ==UserScript== // @name twitter_followers_checker // @namespace http://d.hatena.ne.jp/Cherenkov/ // @include http*://twitter.com/home* // @include http*://twitter.com/friends* // @include http*://twitter.com/followers* // ==/UserScript== Array.prototype.contains = function(value){ for(var i in this){ if( this.hasOwnProperty(i) && this[i].toString() === value.toString()){ // return true; } } return false; } var myURL = 'http://twitter.com/'+document.getElementById('me_name').textContent; var thumbURL = document.evaluate("//td[contains(@class,'thumb')]/a", document, null, 7, null); var URLs = []; for(var i=0;i