Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Auto-Click-Add-FB
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author duclvz
- // @match https://www.facebook.com/profile.php?id=*
- // @match https://www.facebook.com/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- window.onload=function(){
- if (document.querySelector('#pagelet_timeline_main_column')!=null&&document.querySelector('button.FriendRequestAdd.addButton').className.indexOf('hidden_elem')<=-1) {
- document.querySelector('button.FriendRequestAdd.addButton').click();
- }
- };
- // Your code here...
- })();
Advertisement
Add Comment
Please, Sign In to add comment