Greasy Fork is available in English.

pixiv 你正試圖跳轉至其他網站 直接跳轉

不要問,跳轉就對了

// ==UserScript==
// @name         pixiv 你正試圖跳轉至其他網站 直接跳轉
// @namespace    https://greasyfork.org/scripts/407198
// @version      2.2
// @description  不要問,跳轉就對了
// @author       fmnijk
// @match        https://www.pixiv.net/jump.php?*
// @icon         https://www.google.com/s2/favicons?domain=pixiv.net
// @grant        none
// @license MIT
// ==/UserScript==

(window.onload = function() {
    'use strict';
    var stop1 = -100;
    function keeptrying1() {
        if(document.getElementsByTagName("a") == null){
            stop1 += 1;
            if(stop1 < 0){
                setTimeout(( () => keeptrying1() ), 20);
            }
        }else{
            document.getElementsByTagName("a")[0].click();
        }
    }
    setTimeout(( () => keeptrying1() ), 0);
})();