You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
486 B
21 lines
486 B
/*
|
|
Passing messages from background script to popup
|
|
*/
|
|
|
|
let port = chrome.runtime.connect({ name: 'trezor-connect' });
|
|
port.onMessage.addListener(message => {
|
|
window.postMessage(message, window.location.origin);
|
|
});
|
|
port.onDisconnect.addListener(d => {
|
|
port = null;
|
|
});
|
|
|
|
/*
|
|
Passing messages from popup to background script
|
|
*/
|
|
|
|
window.addEventListener('message', event => {
|
|
if (port && event.source === window && event.data) {
|
|
port.postMessage(event.data);
|
|
}
|
|
});
|
|
|