Greasy Fork

Dsrealms link updater

Update old links on Dsrealms

目前为 2018-07-07 提交的版本。查看 最新版本

// ==UserScript==
// @name         Dsrealms link updater
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Update old links on Dsrealms
// @author       airminer
// @match        https://dsrealmtranslations.com/*
// @grant        none
// @require      http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';

    $('a[href*="dsrealm.com"]').each(function() {
        this.href = this.href.replace(/dsrealm\.com/,"dsrealmtranslations.com");
    });
    $('a[href*="lucksego.com"]').each(function() {
        this.href = this.href.replace(/lucksego\.com/,"dsrealmtranslations.com");
    });
})();