Advertisement
Guest User

Untitled

a guest
Dec 20th, 2013
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name          Redesign logo
  3. // @namespace     http://www.mobygames.com
  4. // @description   Replaces the site logo with the Gamefly redesign version
  5. // @include       *.mobygames.com/*
  6. // ==/UserScript==
  7.  
  8. var logo = document.getElementById('mobylogo');
  9. logo.src = 'http://www.mobygames.com/images/redesign/mobygames-logo.png';
  10. logo.width = 365;
  11. logo.height = 41;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement