我有Greasemonkey的问题,它没有自动更新我的脚本(可能是因为我们不想将它添加到其UserScripts根目录,在这种情况下它似乎不会更新它)...
无论如何,我在我的脚本中添加了一段代码(来自here的主要想法)来检查脚本中的脚本版本并让用户知道是否有新版本可用,就像用户想要的那样更新它,如果是这样,它应该为脚本url打开一个新的窗口/选项卡(它应该触发Greasemonkey来安装它)...这是我的senario,它完美到最后它应该打开一个新的窗口/标签...
在这里你可以看到我正在使用的功能:
function checkForUpdate(in_vid){
var plugin_url = 'https://MyWebSiteURL/MonaTest.user.js?'+new Date().getTime();
if ((parseInt(GM_getValue('SUC_last_update', '0')) + 86400000 <= (new Date().getTime()))){
try {
GM_xmlhttpRequest( {
method: 'GET',
url: plugin_url,
headers: {'Cache-Control': 'no-cache'},
onload: function(resp){
var local_version, remote_version, rt, script_name;
rt=resp.responseText;
GM_setValue('SUC_last_update', new Date().getTime()+'');
remote_version = parseFloat(/@version\s*(.*?)\s*$/m.exec(rt)[1]);
local_version = parseFloat(GM_getValue('SUC_current_version', '-1'));
if(local_version!=-1){
script_name = (/@name\s*(.*?)\s*$/m.exec(rt))[1];
GM_setValue('SUC_target_script_name', script_name);
if (remote_version > local_version){
if(confirm('There is an update available for the Greasemonkey script "'+script_name+'."\nWould you like to install it now?')){
-------> GM_openInTab(plugin_url);
//window.open(plugin_url,'_blank')
//location.assign(plugin_url);
GM_setValue('SUC_current_version', remote_version);
}
}
else{
GM_log('No update is available for "'+script_name+'"');
}
}
else{
GM_setValue('SUC_current_version', remote_version+'');
}
}
});
}
catch (err){
GM_log('An error occurred while checking for updates:\n'+err);
}
}
}
我尝试使用GM_openInTab,但它在控制台中返回此错误:
Timestamp: 9/27/12 9:55:33 AM
Error: ReferenceError: GM_openInTab is not defined
Source File: file:///Users/Mona/Library/Application%20Support/Firefox/Profiles/tonwb5lg.default/gm_scripts/MonaTest/MonaTest.user.js
Line: 97
我找不到任何引用来表明GM_openInTab不再支持了!
我尝试了其他解决方案,使用window.open和location.assign ...它们都不起作用,因为它们显示脚本源代码而不触发Greasemonkey来安装它...
我不知道是否有办法使用此方法更新脚本... 如果您分享您的知识并帮助解决我的问题,我将不胜感激。
谢谢你的时间!
P.S。我的firefox版本是15.0.1,Greasemonkey版本是1.1
答案 0 :(得分:1)
不要忘记@grant
。
如果我错了,请更正我,但你的脚本不以js结尾。
var plugin_url = 'https://MyWebSiteURL/MonaTest.user.js?'+new Date().getTime();
尝试强制扩展.js 当我将日期添加到我的脚本时,GM停止安装它 删除最后的日期并试一试。
最后一件事:你的脚本基于2009年的脚本。看一下新的脚本,比如2011年的this。