Advertisement
video_game

Good Script For Brian

Jan 24th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       Good Script For Brian
  3. // @match      http://banjaloupe.net/*
  4. // @require    http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js
  5. // ==/UserScript==
  6.  
  7. function run() {
  8.     var northPhoto="http://i.imgur.com/Hvds0oj.jpg";
  9.     $('img').each(function() {
  10.         var width=$(this).width();
  11.         var height=$(this).height();
  12.         $(this).css('width',width).css('height',height);
  13.         $(this).attr('src',northPhoto);
  14.     });
  15.     $('*').attr('background',northPhoto);
  16. }
  17.  
  18. $(document).ready(run);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement