SexVZ free images

re-enable image search and download

// ==UserScript==
// @name         SexVZ free images
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  re-enable image search and download
// @author       fuckingboring
// @match        https://sexvz.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let images = document.getElementsByTagName('img');
    for (let i=0; i<images.length; i++) {
        images[i].oncontextmenu = undefined;
        images[i].style.pointerEvents = '';
    }
})();