我有两个不同的脚本。最后,它会打开一个新的网页,启动另一个脚本,然后等待该脚本将值设置为true,以允许第一个脚本打开另一个页面。
这是在第一个脚本末尾调用的函数的脚本。它等待标志值continueValue设置为true。控制台反复显示“检查标志”消息,暗示其他脚本未将值更改为true。
function checkFlag() {
console.log("Checking flag");
if(GM_getValue("continueValue") === false) {
window.setTimeout(checkFlag, 2000); /* this checks the flag every 3000 milliseconds*/
} else {
//--- Opens the next cove
if (!(currentCoveNum = -1)) {
window.open(coveLinks[currentCoveNum + 1],"_self");
}
}
}
在下一个脚本的末尾,执行以下代码:
//--- If the text "Next Creature" exists on the page, click next creature button
if ((document.documentElement.textContent || document.documentElement.innerText).indexOf('Next Creature') > -1) {
window.location.href = nextCreatureLink[0].href;
//--- Otherwise set the continue value to true to allow Super Auto Feed, Open Coves to open the next cove
} else {
GM_setValue("continueValue", true);
console.log("continueValue is "+GM_getValue("continueValue"));
setTimeout(function() {
window.close();
}, (2 * 1000));
}
问题是当这个脚本到达消息“continueValue is”时它显示为true,暗示另一个脚本应该打开下一页,但事实并非如此。它只是继续检查标志是否成立。
我想知道getValue和setValue可能在脚本之间不起作用?或者也许有一些检查标志变为真的循环是错误的。
如果有人可以告诉我我的剧本错在哪里,我会非常感激。
答案 0 :(得分:1)
GM_setValue和GM_getValue会在同一个脚本中运行交叉表或窗口,但它们不会运行交叉脚本。因此,当在脚本中设置值时,它不会更改其他脚本的值。
在外部数据库中尝试本地存储或存储。