Duclv

Auto-Click-Add-FB

Apr 16th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Auto-Click-Add-FB
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       duclvz
  7. // @match        https://www.facebook.com/profile.php?id=*
  8. // @match        https://www.facebook.com/*
  9. // @grant        none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.     window.onload=function(){
  15.         if (document.querySelector('#pagelet_timeline_main_column')!=null&&document.querySelector('button.FriendRequestAdd.addButton').className.indexOf('hidden_elem')<=-1) {
  16.             document.querySelector('button.FriendRequestAdd.addButton').click();
  17.         }
  18.     };
  19.     // Your code here...
  20. })();
Advertisement
Add Comment
Please, Sign In to add comment