Gaia - Forum URL Shortener

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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');
  }
})();