Greasy Fork is available in English.

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.

// ==UserScript==
// @name           Flickr: Enable image download (Chrome Compatible)
// @namespace      https://rix.li/
// @description    Removes the div in front of the image and the full size zoom pictures for easy and fast download.
// @match          *://www.flickr.com/photos/*
// @match          *://flickr.com/photos/*
// @version 	   0.0.2
// ==/UserScript==


[].forEach.call(document.querySelectorAll('.spaceball'), function(d) {
    d.remove();
});

document.body.addEventListener('DOMSubtreeModified', function () {
    [].forEach.call(document.querySelectorAll('.facade-of-protection-zoom, .facade-of-protection-neue, .photo-notes-scrappy-view'), function(d) {
        d.remove();
    });
}, false);