从我的greasemonkey脚本中听一个事件

时间:2016-07-13 16:05:42

标签: javascript firefox greasemonkey

我正在试图弄清楚如何从我的greasemonkey脚本中侦听事件发射器,但我一直遇到访问冲突错误(Permission denied to access object)。

网页
该页面包含一个简单的事件发射器:

var emitter = function(){
    this.events = {};
}

emitter.prototype.on = function(eventName, closure){
    this.events[eventName] = this.events[eventName] || [];
    this.events[eventName].push(closure);
};

emitter.prototype.emit = function(eventName, data){
    if(this.events[eventName]){
        this.events[eventName].forEach(function(fn){
            return fn(data);
        });
    }
}

var test = new emitter();
test.emit('test', {data:'test'});

脚本
这会抛出一个访问冲突错误(这曾经用过一段时间了,但我猜它有补丁或其他东西):

unsafeWindow.test.on('test', function(data){
    console.log(data);
});

1 个答案:

答案 0 :(得分:2)

我设法让它发挥作用。解决方案是通过exportFunction(myFunction, unsafeWindow)

将回调函数导出到不安全的上下文中

脚本部分应如下所示:

unsafeWindow.test.on('test', exportFunction(function(data){
   console.log(data);
}, unsafeWindow));

非常感谢wOxxOm指出这一点。