]> git.ktnx.net Git - icedeb.git/blob - icedeb-content.js
initial implementation of e10s. XUL/XPCOM is dropped
[icedeb.git] / icedeb-content.js
1 function listener(request, sender, sendResponse) {
2   window.location = request.url;
3   browser.runtime.onMessage.removeListener(listener);
4 }
5
6 browser.runtime.onMessage.addListener(listener);