I have created Safari Extension that blocks certain elements from Facebook and I was wondering is it possible to make it block all the time. For example, it blocks the elements when you load Facebook, however when you click the Facebook logo in the top left corner all the elements come back, you have to manually reload the page to block them again. So basically all the elements come back when you click something that doesn't reload the page.
Thanks.
Here is my code.
jQuery(document).ready(function(){
$("#content").find("#sideNav").find("#listsNav").css( "display", "none" );
});