Advertisement
fudo

Steam Unsubscription from all addons

Aug 12th, 2018
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery('.workshopItemSubscription').each(function(i){
  2.  
  3.     var el = jQuery('.workshopItemSubscription')[i];
  4.     var id = el.id.split("Subscription")[1];
  5.     try {
  6.         UnsubscribeItem(id, '4000');
  7.     }catch(e){}
  8.  
  9. });
  10.  
  11. setTimeout(function(){window.location.reload();}, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement