Auto-expand gallery preview on Pixiv.net

Automatically expand galleries and show thumbnail view on Pixiv.net

// ==UserScript==
// @name         Auto-expand gallery preview on Pixiv.net
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Automatically expand galleries and show thumbnail view on Pixiv.net
// @author       You
// @match        https://www.pixiv.net/en/artworks/*
// @icon         https://www.google.com/s2/favicons?domain=pixiv.net
// @grant        none
// @run-at document-idle
// ==/UserScript==


'use strict';
const observer = new MutationObserver(function(mutations) {
    const galleryViewButton = document.querySelector (".gtm-manga-viewer-preview-modal-open")
    if(!galleryViewButton) { return; }

    observer.disconnect();
    galleryViewButton.click()
})

observer.observe(document.body, {childList: true, subtree: true})

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址