Ability to prevent browser access
Is your feature request related to a problem? Please describe. When clicking on a discord invite link, the browser will attempt to open a popup on the installed client.
Describe the solution you'd like There should be a way to disable the popup.
Additional context

I've been actually working on something like that while separating socket.ts from WebCord – DisConnection currently implements the API to toggle the hooks status, which should make it possible to allow disabling accepting particular commands (so Discord as well as any other app won't be able to use socket for some of the features).
However, in this particular case DisConnection just sends the response almost immediately (it tells Discord it is ready for the communication), so that's probably requiring like blocking the connection before it happens or even killing entire server. Also, I'm pretty sure WebSocket itself does nothing wrong accepting the connection and it probably works the same way official Discord client does, so maybe I shouldn't work on this?
Also take a note DEEP_LINK requests should show you a Continue in the browser option, so maybe that's intended to work like this on Discord side when using official Discord client. For now, you could just like kill WebCord each time you don't need to use it and you use web version instead.