Skip to content

Instantly share code, notes, and snippets.

@isti115
Created April 24, 2021 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isti115/3273626a38cf2206a85da8de522d36a5 to your computer and use it in GitHub Desktop.
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)
// ==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