- Here's a [bookmarklet](javascript:(function(){}(a = document.querySelectorAll('[name=approve_button]');([]).forEach.call(a, function(e){e.click();});));) of the script for convenience.
Last active
August 29, 2015 14:04
-
-
Save naganowl/49bc9dee57bd3d9c1dff to your computer and use it in GitHub Desktop.
Approves all requests on Facebook's Activity Log. Assumes 'Approve' button is in display for all posts.
This file contains 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
approveButtons = document.querySelectorAll('[name=approve_button]'); | |
([]).forEach.call(approveButtons, function(el){el.click();}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment