Last active
September 22, 2024 13:44
-
-
Save G33kDude/9f9ec5281a8d574847ca28540425343b to your computer and use it in GitHub Desktop.
Hides the quick logout button for the AutoHotkey forums
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 Hide quick logout | |
// @namespace https://github.com/G33kDude | |
// @version 0.1 | |
// @description Hides the quick access logout button in the toolbar next to the notifications | |
// @author GeekDude | |
// @match *://autohotkey.com/boards/* | |
// @grant none | |
// @updateURL https://gist.github.com/G33kDude/9f9ec5281a8d574847ca28540425343b/raw/HideQuickLogout.user.js | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
$('.tab.logout').hide(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment