Facebook/removeAds

Post date: Apr 5, 2015 4:23:35 PM

Irritated by ads? they are gone in one click.

Most web pages use identifiers on elements in their website to enable some fancy functionality.

These can be really handy if you for iinstance wanted to remove or manipulate them with #bookmarklets.

How it works:

The ads are generally in an element called pagelet_side_ads so we just tell the browser to not display that.

Code:

javascript:(function(){document.getElementById('pagelet_side_ads').style.display='none';})()