Created
April 24, 2021 20:42
-
-
Save isti115/3273626a38cf2206a85da8de522d36a5 to your computer and use it in GitHub Desktop.
Revisions
-
isti115 created this gist
Apr 24, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ // ==UserScript== // @name Discord Auth Fix // @namespace http://istvan.donko.hu/ // @version 0.1 // @description Fix Discord auth issue with window sizing // @author István Donkó (Isti115) // @match https://discord.com/* // @run-at document-start // ==/UserScript== ;(function() { 'use strict'; unsafeWindow.outerWidth = unsafeWindow.innerWidth })();