Scroll Element Into View on rule34.xxx

Scrolls into view either the element with the id "image" or "gelcomVideoPlayer" on rule34.xxx

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Scroll Element Into View on rule34.xxx
// @namespace    http://your.namespace.com
// @version      0.2
// @description  Scrolls into view either the element with the id "image" or "gelcomVideoPlayer" on rule34.xxx
// @author       You
// @match        https://rule34.xxx/index.php?page=post*
// @grant        none
// @license      unlicense
// ==/UserScript==

(function() {
    'use strict';

    // Function to scroll an element into view
    function scrollIntoView(element) {
        document.querySelector("#image, #gelcomVideoPlayer").style.width = "auto"
        document.querySelector("#image, #gelcomVideoPlayer").style.maxHeight = "85vh"
        if (element) {
            element.scrollIntoView({ behavior: 'smooth', block: 'center', inline: 'nearest' });
        }
    }

    // Try to find the element with id "image"
    var imageElement = document.querySelector('#image');

    // If not found, try to find the element with id "gelcomVideoPlayer"
    if (!imageElement) {
        var videoPlayerElement = document.querySelector('#gelcomVideoPlayer');
        scrollIntoView(videoPlayerElement);
    } else {
        scrollIntoView(imageElement);
    }
})();