Scroll Element Into View on rule34.xxx

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

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);
    }
})();