Advertisement
Guest User

DeleteFbAnnoyances

a guest
Oct 28th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Delete FaceBook Find Friends
  3. // @namespace    http://cognizantsoftwaresolutions.ca
  4. // @version      1.0
  5. // @description  Delete facebook annoyances
  6. // @author       Demetry Romanowski
  7. // @match        https://www.facebook.com/*
  8. // @grant        none
  9. // @require http://code.jquery.com/jquery-latest.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.     $(document).ready(function(){
  15.         $('#findFriendsNav').remove();
  16.         $('._64b').remove();
  17.         $('#pinnedNav').remove();
  18.         $('#appsNav').remove();
  19.         $('#createNav').remove();
  20.     });
  21. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement