返回首頁 

Greasy Fork is available in English.

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

不要問,跳轉就對了


安装此脚本?
// ==UserScript==// @name         pixiv 你正試圖跳轉至其他網站 直接跳轉// @namespace    https://greasyfork.org/scripts/501902// @version      2.3// @description  不要問,跳轉就對了// @author       fmnijk// @match        https://www.pixiv.net/*// @icon         https://www.google.com/s2/favicons?domain=pixiv.net// @grant        none// @license      MIT// ==/UserScript==(window.onload = function() {'use strict';if (!window.location.href.startsWith('https://www.pixiv.net/jump.php?')) {return false;}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);})();