使用GreaseMonkey更改URL

时间:2016-07-23 16:32:33

标签: javascript regex greasemonkey

我想用Greasemonkey脚本更改页面的当前URL。

我的意思是,我在位置:“http://www.mywebsite.com/video/old/*.mkv”我希望转到“http://www.mywebsite.com/video/new/*.mkv”。所以基本上,我只想更改URL中“new”中的“old”。

我找到了这段代码:

var oldUrlPath  = window.location.pathname;

/*--- Test that ".compact" is at end of URL, excepting any "hashes"
or searches.
*/
    var newURL  = window.location.protocol + "//"
            + window.location.host 
            + oldURLPath
            + window.location.search
            + window.location.hash
            ;
     /*-- replace() puts the good page in the history instead of the
    bad page.
    */
    window.location.replace (newURL);

但我不知道如何用我想要的newURLPath替换oldURLPath。 我想我必须使用replace()但是我不确定(我尝试的所有代码都不起作用,我必须不正确使用它,因为我不熟悉ReGex)。

感谢您的回答

1 个答案:

答案 0 :(得分:0)

我没有看到正则表达式的任何需要。看起来你可以replace() oldnew

var oldURL = "http://www.mywebsite.com/video/old/*.mkv";
location.href = oldURL.replace('old','new');