Gaia - Forum URL Shortener

This shortens the thread URL in the address bar, pagination links, and post links.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Gaia - Forum URL Shortener
// @namespace    GaiaUpgrade
// @version      0.1
// @description  This shortens the thread URL in the address bar, pagination links, and post links.
// @author       KnightYoshi
// @match        http://www.gaiaonline.com/forum/*
// @grant        none
// ==/UserScript==

(function () {
  'use strict';

  var regex = /\/forum\/.*\/(t.\d+(?:_(?:recent|\d+))?)\//;
  var pathModifier = location.pathname.replace(regex, '/forum/$1');
  var newURL = pathModifier + location.hash;
  var GuHistory = { modifier: "GaiaUpgrade" };
  history.pushState(GuHistory, document.querySelector('title').textContent, newURL);

  var postURLs = document.querySelectorAll('.post-directlink a');
  var title = document.querySelector('#thread_title a');
  title.href = title.href.replace(regex, '/forum/$1');

  var pages = document.querySelectorAll('.forum_detail_pagination .yui3-pjax');

  for(var page of pages) {
    page.href = page.href.replace(regex, '/forum/$1');
  }

  for(var anchor of postURLs) {
    anchor.href = anchor.href.replace(regex, '/forum/$1');
  }
})();