ميث
angels cry when they hear my name

🥵✨

follow me on twitter: @maythurl ✨

send me money i’ll do anything you want <3


m86:

siri, call drug dealer

// ==UserScript== // @name Tumblr - UnFollow All // @namespace http://script.b9mx.com/tumblr-unfollow-all.user.js // @description Adds a button to unfollow all the blogs at once. // @include https://www.tumblr.com/following // @include https://www.tumblr.com/following/* // @version 3 // @grant none // ==/UserScript== window.done = 0; window.followings = []; window.unfollows = function(){ jQuery('#un_row input').val(window.followings[0]); window.Tumblr.unfollow({ tumblelog:window.followings[0] },{ complete:function(){ window.followings.shift(); if(window.followings.length > 0) window.unfollows(); else window.fullow(); } }); } window.fullow = function(){ if(window.done === 0) { var c = confirm('Are you sure you want to unFollow all blogs?'); if(!c) return false; jQuery('#un_row input').unbind('click.once'); window.done = 1; } if(window.done !== 2){ jQuery.get('https://www.tumblr.com/following', function(x){ var trim = new RegExp("^[\s\S]*?]*?>|<\/body>[\s\S]*?$|"+ "]*?>[\s\S]*?<\/script>","gi"); var less = jQuery('
').html(x.replace(trim,'')); var lot = 0; less.find('.follower div.name a').each(function(i,f){ window.followings.push(jQuery(f).html()); lot++; }); if(lot===0){ window.done = 2; window.fullow(); }else{ window.unfollows(); } }); }else{ document.location = document.location.href + "?all_removed"; } } var un_row = jQuery('
'). addClass('follower'). attr('id','un_row'). addClass('clearfix').css( 'background-color','rgba(255,0,0,0.1)' ); if(!jQuery('.follower').last().hasClass('alt')) jQuery(un_row).addClass('alt'); var un_button = jQuery(''). addClass('chrome'). addClass('clear'). addClass('big'). addClass('unfollow_button'). attr({type:"button",value:"unFollow All"}). bind('click.once', window.fullow); jQuery(un_row).append(un_button); jQuery('.follower').last().after(un_row);