discordplugins

This commit is contained in:
poslop
2022-08-17 13:27:47 -05:00
parent 19deaaff3f
commit 623a84748b
22 changed files with 8670 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/**
* @name No_Double_Back
*/
const {ipcRenderer} = require('electron')
module.exports = class noDoubleBack {
load() { this.DISCORD_NAVIGATE_BACK = ipcRenderer._events.DISCORD_NAVIGATE_BACK}
start() { ipcRenderer.removeListener('DISCORD_NAVIGATE_BACK', ipcRenderer._events.DISCORD_NAVIGATE_BACK) }
stop() { ipcRenderer.addListener('DISCORD_NAVIGATE_BACK', this.DISCORD_NAVIGATE_BACK) }
}