您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fixes the issue of images not displaying when opening posts on another tab.
// ==UserScript== // @name Sankaku Beta no image fix // @namespace http://tampermonkey.net/ // @version 0.1 // @description Fixes the issue of images not displaying when opening posts on another tab. // @author Pwalpac // @match https://beta.sankakucomplex.com/post/show/* // @grant none // ==/UserScript== (function() { 'use strict'; 'esversion: 6'; // The issue happens when you open a post on a new tab and you are using tag search. // To fix it, it simply redirects the page to the version without the tags (removing everything after the "?" from the url). const currentUrl = window.location.href; const questionMarkIndex = currentUrl.indexOf("?"); if (questionMarkIndex !== -1){ const urlWithoutTags = currentUrl.substring(0, questionMarkIndex); window.location.href = urlWithoutTags; } })();