Flickr: Enable image download (Chrome Compatible)

Removes the div in front of the image and the full size zoom pictures for easy and fast download.

  1. // ==UserScript==
  2. // @name Flickr: Enable image download (Chrome Compatible)
  3. // @namespace https://rix.li/
  4. // @description Removes the div in front of the image and the full size zoom pictures for easy and fast download.
  5. // @match *://www.flickr.com/photos/*
  6. // @match *://flickr.com/photos/*
  7. // @version 0.0.2
  8. // ==/UserScript==
  9.  
  10.  
  11. [].forEach.call(document.querySelectorAll('.spaceball'), function(d) {
  12. d.remove();
  13. });
  14.  
  15. document.body.addEventListener('DOMSubtreeModified', function () {
  16. [].forEach.call(document.querySelectorAll('.facade-of-protection-zoom, .facade-of-protection-neue, .photo-notes-scrappy-view'), function(d) {
  17. d.remove();
  18. });
  19. }, false);