Greasy Fork is available in English.

pixivの漫画を自動で展開

pixivのマンガ作品の閲覧画面で、[すべて見る]を自動でクリックします。

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         pixivの漫画を自動で展開
// @namespace    https://armedpatriot.blog.fc2.com/
// @version      1.0.5
// @description  pixivのマンガ作品の閲覧画面で、[すべて見る]を自動でクリックします。
// @author       Patriot
// @match        https://www.pixiv.net/*
// @grant        none
// @run-at       document-idle
// ==/UserScript==

(function() {
    'use strict';
    const selector=`[style="transform: translateY(0%);"] section + button`;

    let intervalID=setInterval(
        ()=>{
            let expandButtonElement=document.querySelector(selector);
            if(expandButtonElement){
                expandButtonElement.click();
            }
        },
        500
    );
})();