```js
console.log('READY STATE '+ electron.app.isReady());
electron.app.once("loaded", async ()=>{console.log("loaded");});
electron.app.whenReady().then(async ()=>{console.log("whenReady");});
```
Results in the following when the app is already ready.
```
READY STATE true
whenReady
[... loaded will be logged]
```
This will not fix the race condition when opening the devtools. You want to open the devtools as **early** as possible for the tabs to show up.
- Fixes colored text
- Fixes detach window not showing saved css (closes#635)
- Adds option to prevent Discord from hijacking the media keys (closes#410)
- Adds command line flag to launch a vanilla version of Discord `--vanilla` (closes#337)
- Adds option for app-wide ctrl+shift+c shortcut for inspect element (closes#349)
- Adds emote blocklist to BdApi via `BdApi.Emotes.blocklist` (closes#408)
- Removes copy selector developer option
- Add a crash check in the injector
- Switch from throwing over the wall to using <script> elements
- Revert to synchronous loading due to above
- Don't load on login screen
- Plugin logging includes version numbers
- Fix blankslate links
- Fix changelog overflow