如何存储URL并访问Greasemonkey中的URL

时间:2011-02-17 03:16:30

标签: javascript scripting greasemonkey

好吧我在Greasemonkey中仍然是一个非常新的编码器,只是知道一点,所以请尽量解释你最好的。

我正在尝试做的是让我有一个Greasemonkey在第一次使用脚本时获得的变量,变量是页面所在的URL然后它将调用变量并转到那个网址。

基本上我需要知道: 如何存储URL和访问URL。

我希望我很清楚。

1 个答案:

答案 0 :(得分:2)

这个问题不明确。你只是想不断刷新页面吗?

无论如何,重新:"So basically i need to know: How to store a URL and Visit a URL."
...

//--- Store a URL.
GM_setValue ("MyURL", window.location.href);


//--- Visit a URL.
var MyURL               = GM_getValue ("MyURL");
window.location.href    = MyURL;


参考the Greasemonkey Manual