Advertisement
Guest User

RMW Link Fix

a guest
Feb 9th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         RMW Link Fix
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  Fixes broken links on RMW forums.
  6. // @author       kattywompus
  7. // @include      *forums.rpgmakerweb.com/index.php?/topic/*
  8. // @require      http://code.jquery.com/jquery-latest.js
  9. // ==/UserScript==
  10.  
  11. var regex = /(.*)index\.php\?\/topic\/([0-9]+).+/i;
  12.  
  13. window.location.href = window.location.href.replace(regex, "$1threads/$2/");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement