Created
April 24, 2021 20:42
-
-
Save isti115/3273626a38cf2206a85da8de522d36a5 to your computer and use it in GitHub Desktop.
Fix the Discord authentication issue with differing inner and outer widths (e.g. QuteBrowser tabs on the left)
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 characters
// ==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 | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment