Greasy Fork is available in English.
Remove the "TGx:" prefix from the torrent title and replace periods with spaces - 6/4/2023, 3:57:19 AM
// ==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;
}