Fix Bad Links from wotlk.openwow.com to wotlk.cavernoftime.com 失效域名替换

href.replace("http://wotlk.openwow.com", "http://wotlk.cavernoftime.com");

// ==UserScript==
// @name         Fix Bad Links from wotlk.openwow.com to wotlk.cavernoftime.com 失效域名替换
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  href.replace("http://wotlk.openwow.com", "http://wotlk.cavernoftime.com");
// @author       A.C. Better
// @match        *://forum.warmane.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var anchors = document.querySelectorAll('a[href]');
    Array.prototype.forEach.call(anchors, function (element, index) {
        element.href = element.href.replace("http://wotlk.openwow.com", "http://wotlk.cavernoftime.com");
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址