Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name hide okcupid
- // @namespace
- // @version 0.1
- // @description enter something useful
- // @author You
- // @match okcupid.com/*
- // @match www.okcupid.com/*
- // @grant none
- // @require http://code.jquery.com/jquery-latest.js
- // ==/UserScript==
- $(document).ready(function() {
- $("#logo").css("display","none");
- (function() {
- var link = document.createElement('link');
- link.type = 'image/x-icon';
- link.rel = 'shortcut icon';
- link.href = 'http://www.stackoverflow.com/favicon.ico';
- document.getElementsByTagName('head')[0].appendChild(link);
- }());
- });
Advertisement
Add Comment
Please, Sign In to add comment