1

我尝试编写一个用户脚本,从网站标题(flash browsergame)中删除所有内容,但开始操作时出现倒计时

我是 Javascript 新手,需要一些帮助。

更新

正则表达式问题已解决,但我仍然需要一些帮助才能让此脚本“监控”标题,因此每次游戏更改时,脚本都会再次运行。

主标题如下所示:

Shakes & Fidget - The Game (buffed buffed)

一旦动作开始,倒计时就会添加到开头,因此标题更改为

02:26 - Shakes & Fidget - The Game (buffed buffed)

我希望标题仅显示倒计时。

我在网上搜索并找到了不同的方法来做到这一点,但它们都不适合我。

这是我目前拥有的:

// ==UserScript==
// @name       Shakes & Fidget Buffed title shortener
// @namespace  http://släcker.de
// @version    0.1
// @description  Removes the page title of Shakes & Fidget to only display left time if it exists
// @include        *.sfgame.*
// @exclude        www.sfgame.*
// @exclude        sfgame.*
// @copyright  2013+, slaecker
// ==/UserScript==

var regex = [^0-9:]

function cleanTitle() { 
    var oldTitle = document.title; 
    var oldTitleRX = oldTitle.match(regex);
    document.title = oldTitle.replace(oldTitleRX,""); 
    return oldTitle; 
} 


cleanTitle()

Javascript 控制台显示有关正则表达式的错误。我试图转义字符,但错误是相同的:

env: ERROR: Syntax error @ 'Shakes & Fidget Buffed title shortener'!
Unexpected token ^
SyntaxError: Unexpected token ^
    at Window.Function (<anonymous>)
    at L (eval at <anonymous> (eval at <anonymous> (chrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/content.js:51:21)), <anonymous>:156:21)
    at n (eval at <anonymous> (eval at <anonymous> (chrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/content.js:51:21)), <anonymous>:384:2)
    at R (eval at <anonymous> (eval at <anonymous> (chrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/content.js:51:21)), <anonymous>:388:86)
    at Q (eval at <anonymous> (eval at <anonymous> (chrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/content.js:51:21)), <anonymous>:194:40)
Uncaught SyntaxError: Unexpected token ^
L
n
R
Q

它必须是正则表达式匹配,因为包含的字符串“(buffed buffed)”发生了变化(它显示了服务器名称)。

另一个问题是脚本应该“监视”标题,因为每次启动或完成新操作时它都会更改,但我的脚本只运行一次(在没有正则表达式的情况下对其进行了测试)。

在此先感谢您的帮助,

斯莱克

4

3 回答 3

2

您的正则表达式文字有几个问题。它必须被包装到 /-es,它错过了一个乘数,没有它它只匹配一个字符,并且您需要使用“g”修饰符使其全局化,以便匹配数字两侧的字符串部分。

var regex = /[^0-9:]+/g;

function cleanTitle() { 
    document.title = document.title.replace(regex, ""); 
}
于 2013-01-14T15:41:05.903 回答
2

对于正则表达式,使用:

document.title = document.title.replace (/[^0-9:]/g, "");

要检测标题更改,请使用MutationObservers,这是一种在 Google Chrome 和 Firefox(两个主要的浏览器)中实现的新 HTML5 功能。

这个完整的脚本将起作用:

// ==UserScript==
// @name        Shakes & Fidget Buffed title shortener
// @namespace   http://släcker.de
// @version     0.1
// @description  Removes the page title of Shakes & Fidget to only display left time if it exists
// @include     *.sfgame.*
// @exclude     www.sfgame.*
// @exclude     sfgame.*
// @copyright   2013+, slaecker, Stack Overflow
// @grant       GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
    introduced in GM 1.0.   It restores the sandbox.
*/

var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var myObserver       = new MutationObserver (titleChangeDetector);
var obsConfig        = {
    //-- Subtree needed.
    childList: true, characterData: true, subtree: true
};

myObserver.observe (document, obsConfig);

function titleChangeHandler () {
    this.weInitiatedChange      = this.weInitiatedChange || false;
    if (this.weInitiatedChange) {
        this.weInitiatedChange  = false;
        //-- No further action needed
    }
    else {
        this.weInitiatedChange  = true;
        document.title = document.title.replace (/[^0-9:]/g, "");
    }
}

function titleChangeDetector (mutationRecords) {

    mutationRecords.forEach ( function (mutation) {
        //-- Sensible, Firefox
        if (    mutation.type                       == "childList"
            &&  mutation.target.nodeName            == "TITLE"
        ) {
            titleChangeHandler ();
        }
        //-- WTF, Chrome
        else if (mutation.type                      == "characterData"
            &&  mutation.target.parentNode.nodeName == "TITLE"
        ) {
            titleChangeHandler ();
        }
    } );
}

//-- Probably best to wait for first title change, but uncomment the next line if desired.
//titleChangeHandler ();

如果您正在使用其他浏览器(在问题中说明),则回退到使用setInterval().

于 2013-01-15T01:25:20.823 回答
1

看起来您的计时器/计数器具有明确的格式。假设格式是##:##,您可以这样形成您的 RegEx:

var regex = /\d\d:\d\d/g;

然后,这将获得特定的计时器模式(而不是在标题开头找到的任何数字和冒号)。

不要忘记将您的正则表达式语句用斜杠括起来。在正斜杠之后使用g(如上所示)将在您的标题中找到其他计时器实例。如果你知道你只有一个,最好把g末端取下来。

于 2013-01-14T15:55:37.587 回答