mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
9 lines
254 B
JavaScript
9 lines
254 B
JavaScript
// eslint-disable-next-line import/unambiguous
|
|
(function () {
|
|
const log = console.log.bind(console);
|
|
const msg = 'SNOW INTERCEPTED NEW WINDOW CREATION IN METAMASK APP: ';
|
|
window.top.SNOW((win) => {
|
|
log(msg, win, win?.frameElement);
|
|
});
|
|
})();
|