Hello
With current world browsers providing consoles (e,g chrome console)
the following javascript code can be used to mass un-follow or follow
Follow
setInterval(function(){t=$(".following button:eq(0)");if(!t[0]){window.scrollTo(0,$(document).height());}else{ t.trigger("mouseenter") ;t.trigger("click");$('.follow-text').trigger('click')}},100)
Un Follow
setInterval(function(){t=$(".following button:eq(0)");if(!t[0]){window.scrollTo(0,$(document).height());}else{ t.trigger("mouseenter") ;t.trigger("click");$('.unfollow-text').trigger('click')}},100)
regards
Hitesh