Better torrentgalaxy.to torrent title

Remove the "TGx:" prefix from the torrent title and replace periods with spaces - 6/4/2023, 3:57:19 AM

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Better torrentgalaxy.to torrent title
// @namespace   Violentmonkey Scripts
// @match       https://torrentgalaxy.to/torrents-details.php
// @match       https://torrentgalaxy.to/torrent/*/*
// @grant       none
// @version     1.1
// @author      -
// @description Remove the "TGx:" prefix from the torrent title and replace periods with spaces - 6/4/2023, 3:57:19 AM
// ==/UserScript==

t = document.title; // e.g. "TGx:Foobar.2023.720p.AMZN.WEBRip.800MB.x264-GalaxyRG"

if(t.startsWith("TGx:")) {
  t2 = t.replace(/^TGx:/, '').replace(/\./g, ' ');
  document.title = t2;
}