Strip tab prefixes

By Henrik N Last update Aug 24, 2005 — Installed 2,031 times.
// ==UserScript==
// @name           Strip tab prefixes
// @namespace      http://henrik.nyh.se
// @description    Remove site name from titles, i.e. tabs. Intended for forums with titles like "Forum Name - Thread Name". Will remove the first space-dash-space and everything preceding it. Modify @include if necessary.
// @include        http://forum.*/*
// @include        http://*/forum/*
// ==/UserScript==

t = document.title;
i = t.indexOf(' - ');

if (i > 0) document.title = t.substring(i + 3);