12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
/* global chrome */
|
|
|
|
window.addEventListener("message", function ({ data }) {
|
|
if (data.from === "discuss") {
|
|
chrome.runtime.sendMessage(data);
|
|
}
|
|
});
|
|
|
|
chrome.runtime.onMessage.addListener(function (request) {
|
|
window.postMessage(request);
|
|
});
|