如何从网站上的所有单个页面标题中删除不需要的混乱?

时间:2012-07-17 21:27:27

标签: javascript greasemonkey

我使用的论坛首先是网站的长名称,然后是标题中主题的网页名称。所以,我只能在浏览器选项卡中看到线程名称的前2个字符。

我使用了这个"Change Page Title" script,但它一次只能更改一个页面的标题。如何删除所有页面标题栏上的superlongwebsitename?

我想更改它,所以当我进入网站上的任何页面时,它只显示线程名称(上述脚本需要每个页面的条目)。

对于像这样的HTML:

<meta name="description" content="superlongsitename / threadname" />
<title>superlongsitename / threadname</title>

我希望脚本在给定网站的所有页面中搜索和删除“superlongsitename”。

我试过了:

newString = str.replace("Tarantula&nbsp;- Sekiz Bacakli Güzeller /", )

但它不起作用。

1 个答案:

答案 0 :(得分:0)

该网站使用unicode字符,有时需要在regular expressions中进行特殊处理。但是,幸运的是,该网站方便地将所有残骸放在斜线字符(/)之前。

因此,您可以使用/^[^\/]+\/\s*/这样的正则表达式来捕获它。

以下是修复标题的完整脚本

// ==UserScript==
// @name        _Tarantula, smarter, less cluttered title.
// @namespace   tarantula.gen
// @include     http://www.tarantula.gen.tr/forum/*
// @include     https://www.tarantula.gen.tr/forum/*
// ==/UserScript==

//--- Delete everything before the first slash (/).
var newTitle    = document.title.replace (/^[^\/]+\/\s*/, "");
document.title  = newTitle;