您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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; }