使用的脚本猫吗?也许是bug。。。。贴一下你的代码和管理器、浏览器版本
我使用最新版本的脚本猫(0.10.0),使用如下代码测试正常
// ==UserScript==
// @name 页面脚本
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description try to take over the world!
// @author You
// @match https://bbs.tampermonkey.net.cn/
// @storageName test
// @grant GM_setValue
// @grant GM_addValueChangeListener
// ==/UserScript==
GM_addValueChangeListener("test-iframe", (a,b,c,d,e) => {
console.log(a,b,c,d,e);
})
setInterval(() => {
GM_setValue("test-page", Date.now());
}, 1000);
// ==UserScript==
// @name iframe脚本
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description try to take over the world!
// @author You
// @match https://googleads.g.doubleclick.net/pagead/*
// @storageName test
// @grant GM_setValue
// @grant GM_addValueChangeListener
// ==/UserScript==
GM_addValueChangeListener("test-page", (a,b,c,d,e) => {
console.log(a,b,c,d,e);
})
setInterval(() => {
GM_setValue('test-iframe', Date.now());
}, 1000);