您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自動展開Pixiv作品
当前为
// ==UserScript== // @name Pixiv作品自動點選「檢視全部」 // @name:ja Pixiv作品「すべて見る」を自動クリック // @name:en Pixiv Artwork Auto-Click "Show All" // @description 自動展開Pixiv作品 // @description:en Automatically expand Pixiv artworks // @description:ja Pixivの作品を自動的に展開 // @match https://www.pixiv.net/artworks/* // @match https://www.pixiv.net/en/artworks/* // @grant none // @version 1.0.0 // @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或关注我们的公众号极客氢云获取最新地址