Created
February 11, 2015 10:59
-
-
Save antonlobanovskiy/c68c399d79c88fcfcdda to your computer and use it in GitHub Desktop.
Finding a friend's comment in Facebook in a popular post (with thousands of comments)
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
// RIGHT CLICK 'VIEW MORE COMMENTS' AND SELECT INSPECT ELEMENT | |
// RIGHT CLICK THE ELEMENT AND SELECT 'ADD ATTRIBUTE' | |
// GIVE THE VIEW MORE BUTTON AN ID OF: id="viewmore" | |
// THEN IN THE CONSOLE, COPY PASTE THIS CODE (IT WILL AUTO CLICK 'VIEW MORE COMMENTS' FOR YOU EVERY 2 SECONDS. ADJSUT '2000' IF YOU HAVE SLOWER OR FASTER INTERNET. | |
var view = document.getElementById("viewmore"); | |
setInterval(function() {view.click();}, 2000); | |
// THEN USE CONTROL 'F' TO SEARCH FOR THE FRIEND/USER |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment