// ==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 // @downloadURL none // ==/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"); }); })();