mirror of
https://github.com/EndPwnArchive/endpwn3.git
synced 2024-08-15 00:23:30 +00:00
make version an object
This commit is contained in:
parent
e18bef6f01
commit
f78b7580ce
1 changed files with 9 additions and 1 deletions
10
crxpwn.js
10
crxpwn.js
|
@ -43,7 +43,15 @@
|
||||||
crispr.go();
|
crispr.go();
|
||||||
electron.getCurrentWindow().webContents.on('dom-ready', () => epapi.go({
|
electron.getCurrentWindow().webContents.on('dom-ready', () => epapi.go({
|
||||||
name: 'EndPwn3',
|
name: 'EndPwn3',
|
||||||
version: '3.1',
|
version: {
|
||||||
|
major: 3,
|
||||||
|
minor: 1,
|
||||||
|
revision: 0,
|
||||||
|
|
||||||
|
toString: function () {
|
||||||
|
return `v${this.major}.${this.minor}.${this.revision}`;
|
||||||
|
}
|
||||||
|
},
|
||||||
method: 'crxpwn',
|
method: 'crxpwn',
|
||||||
brand: true
|
brand: true
|
||||||
}));
|
}));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue