您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fix broken WinClassic attachment links
// ==UserScript== // @name AttachClassic - fix broken WinClassic links [2025] // @name:pl AttachClassic - napraw uszkodzone linki WinClassic [2025] // @namespace https://winclassic.net/ // @version 2025-07-11 // @description Fix broken WinClassic attachment links // @description:en-GB Repair not working WinClassic file download links // @description:pl Napraw uszkodzone linki WinClassic // @author Winverse // @match *://winclassic.boards.net/* // @icon https://i.imgur.com/BLhizsg.png // @grant none // ==/UserScript== (function() { 'use strict'; const newUrl = window.location.href.replace('winclassic.boards.net', 'winclassic.net'); if (window.location.href !== newUrl) { console.log('AttachClassic redirecting to:', newUrl); window.location.replace(newUrl); } })();