mirror of
https://github.com/EndPwnArchive/endpwn3.git
synced 2024-08-15 00:23:30 +00:00
delay epapi.go() to onload
also load crispr
This commit is contained in:
parent
bb9af0b91d
commit
7b5165d474
1 changed files with 6 additions and 4 deletions
10
crxpwn.js
10
crxpwn.js
|
@ -35,10 +35,12 @@
|
|||
return eval('(()=>{var exports={};' + fs.readFileSync(___data + path, 'utf8').toString() + ';return exports})()');
|
||||
}
|
||||
|
||||
// load EPAPI
|
||||
// load CRISPR and EPAPI
|
||||
var crispr = __krequire('crispr.js');
|
||||
var epapi = __krequire('epapi.js');
|
||||
|
||||
// call the entrypoint
|
||||
epapi.go('crxpwn', 0, 1);
|
||||
|
||||
// call their entrypoints
|
||||
crispr.go();
|
||||
document.body.onload = () => epapi.go('crxpwn', 0, 1);
|
||||
|
||||
})();
|
Loading…
Reference in a new issue