0
3

[–] PuttItOut 0 points 3 points (+3|-0) ago 

I'll ping you some package links on preview with demos for api and state.

There is full api access so if you decided to make this a thing you can save new blocks and other fun stuff.

0
4

[–] boredTech [S] 0 points 4 points (+4|-0) ago 

console.log("started");

$(document).ready(function(){
  var user = $(document).find('a[title="Profile"]').attr('href');

  $.get('https://' + document.domain + '/' + user + '/blocked/user', function(result){
     $(result).find('td > a').each(function(){
       $("div.submission").has('a[href="/u/' + $(this).text() + '"]').animate({opacity: 0.25});
       });
   });
});

console.log("done");

result : https://imgoat.com/uploads/4d9ee44e45/198088.png


Sounds cool man. Stuff to play with isn't bad.

0
3

[–] PuttItOut 0 points 3 points (+3|-0) ago 

Awesome!