Flickr Img src

Removes the stupid div in from of the image

  1. // ==UserScript==
  2. // @name Flickr Img src
  3. // @namespace AfzalivE
  4. // @description Removes the stupid div in from of the image
  5. // @include http://www.flickr.com/photos/*
  6. // @include http://flickr.com/photos/*
  7. // @version 0.0.1.20140811015305
  8. // ==/UserScript==
  9.  
  10. function removeElement(divNum) {
  11. var d = document.getElementById('photo');
  12. var olddiv = document.getElementById(divNum);
  13. d.removeChild(olddiv);
  14. }
  15.  
  16. removeElement("photo-drag-proxy");