Created
August 31, 2016 15:03
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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