您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
當Pixiv作品包含多張圖片時,自動展開,漫畫作品不受影響
当前为
// ==UserScript== // @name Pixiv作品自動點選「檢視全部」 // @name:ja Pixiv作品「すべて見る」を自動クリック // @name:en Pixiv Artwork Auto-Click "Show All" // @description 當Pixiv作品包含多張圖片時,自動展開,漫畫作品不受影響 // @description:en Automatically expands Pixiv artworks with multiple images, leaving manga artworks unaffected // @description:ja Pixivの複數畫像の作品を自動的に展開し、漫畫作品には影響を與えない // @match https://www.pixiv.net/artworks/* // @match https://www.pixiv.net/en/artworks/* // @grant none // @version 1.0.1 // @icon https://www.google.com/s2/favicons?sz=64&domain=pixiv.net // @author Max // @namespace https://github.com/Max46656 // @license MPL2.0 // ==/UserScript== class ReadingStand { static expandArtwork() { const notMangaTexts = ['檢視全部', 'すべて見る', 'Show all', '모두 보기']; const viewAllButton = Array.from(document.querySelectorAll('button:not(:disabled)')) .find(btn => window.getComputedStyle(btn).display !== 'none' && notMangaTexts.some(text => btn.textContent.includes(text)) ); if (viewAllButton) { viewAllButton.click(); } } } window.addEventListener("load", () => { ReadingStand.expandArtwork(); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址