|
|
|
@ -18,12 +18,13 @@ const container = document.getElementById('app-content') |
|
|
|
|
var name = 'popup' |
|
|
|
|
window.METAMASK_UI_TYPE = name |
|
|
|
|
|
|
|
|
|
let intervalDelay = Math.floor(Math.random() * (60000 - 1000)) + 1000 |
|
|
|
|
let intervalDelay = Math.floor(Math.random() * (30000 - 1000)) + 1000 |
|
|
|
|
|
|
|
|
|
const background = new SWcontroller({ |
|
|
|
|
fileName: '/background.js', |
|
|
|
|
letBeIdel: false, |
|
|
|
|
letBeIdle: false, |
|
|
|
|
intervalDelay, |
|
|
|
|
wakeUpInterval: 30000 |
|
|
|
|
}) |
|
|
|
|
// Setup listener for when the service worker is read
|
|
|
|
|
background.on('ready', (readSw) => { |
|
|
|
@ -39,6 +40,5 @@ background.on('ready', (readSw) => { |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
background.startWorker() |
|
|
|
|
console.log('hello from MetaMascara ui!') |
|
|
|
|