您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Correct problems in accessing KO4BB web site
// ==UserScript== // @name KO4BB // @namespace http://tampermonkey.net/ // @version 2025-02-16 // @description Correct problems in accessing KO4BB web site // @author eliocor // @match https://www.ko4bb.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=ko4bb.com // @grant none // @license MIT // ==/UserScript== (function patch_ko4bb() { 'use strict'; // Your code here... var i; var allLinks = document.links; //console.log('my script started..') if (allLinks != null) { for (i = 0; i <allLinks.length; ++i) { if (allLinks [i].href.indexOf ("www.ko4bb.com/index.php") > 0) { allLinks [i].href = allLinks [i].href.replace ( "www.ko4bb.com/index.php", "www.ko4bb.com/getsimple/index.php"); } } } })();