Skip to content

Instantly share code, notes, and snippets.

@allaniftrue
Created August 31, 2016 15:03
Show Gist options
  • Select an option

  • Save allaniftrue/652a0117027591c7ff2fd49a00f1cd94 to your computer and use it in GitHub Desktop.

Select an option

Save allaniftrue/652a0117027591c7ff2fd49a00f1cd94 to your computer and use it in GitHub Desktop.
Automate removal of facebook ads preferences. Let document load > click load more until all interests are loaded > open developer tools > paste code
var rmBtns = document.querySelectorAll('[aria-label="Remove"]')
rmBtns.forEach(function(el) {
el.click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment