Guest User

Untitled

a guest
Mar 24th, 2015
599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         hide okcupid
  3. // @namespace    
  4. // @version      0.1
  5. // @description  enter something useful
  6. // @author       You
  7. // @match        okcupid.com/*
  8. // @match        www.okcupid.com/*
  9. // @grant        none
  10. // @require http://code.jquery.com/jquery-latest.js
  11. // ==/UserScript==
  12.  
  13. $(document).ready(function() {
  14.     $("#logo").css("display","none");
  15.    
  16.     (function() {
  17.     var link = document.createElement('link');
  18.     link.type = 'image/x-icon';
  19.     link.rel = 'shortcut icon';
  20.     link.href = 'http://www.stackoverflow.com/favicon.ico';
  21.     document.getElementsByTagName('head')[0].appendChild(link);
  22.     }());
  23. });
Advertisement
Add Comment
Please, Sign In to add comment