pornpics.com Click on images to open slideshow.

Instead of opening images when you click on them, it starts the slideshow.

// ==UserScript==
// @name        pornpics.com Click on images to open slideshow.
// @namespace   Violentmonkey Scripts
// @match       https://www.pornpics.com/galleries/*
// @version     1.0
// @author      pleazy
// @description Instead of opening images when you click on them, it starts the slideshow.
// @namespace https://greasyfork.org/users/720957
// ==/UserScript==
(() => {
    'use strict';

    // click on gallery start button when an image tile gets clicked
    document.querySelectorAll('#tiles img').forEach((currentValue, currentIndex, listObj) => {
        currentValue.addEventListener("click", (e) => {
          document.querySelector('.play').click();
          e.preventDefault();
        });
    });
})();