Auto-expand gallery preview on Pixiv.net

Automatically expand galleries and show thumbnail view on Pixiv.net

  1. // ==UserScript==
  2. // @name Auto-expand gallery preview on Pixiv.net
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Automatically expand galleries and show thumbnail view on Pixiv.net
  6. // @author You
  7. // @match https://www.pixiv.net/en/artworks/*
  8. // @icon https://www.google.com/s2/favicons?domain=pixiv.net
  9. // @grant none
  10. // @run-at document-idle
  11. // ==/UserScript==
  12.  
  13.  
  14. 'use strict';
  15. const observer = new MutationObserver(function(mutations) {
  16. const galleryViewButton = document.querySelector (".gtm-manga-viewer-preview-modal-open")
  17. if(!galleryViewButton) { return; }
  18.  
  19. observer.disconnect();
  20. galleryViewButton.click()
  21. })
  22.  
  23. observer.observe(document.body, {childList: true, subtree: true})

QingJ © 2025

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