Skip to content

Instantly share code, notes, and snippets.

@G33kDude
Last active September 22, 2024 13:44
Show Gist options
  • Save G33kDude/9f9ec5281a8d574847ca28540425343b to your computer and use it in GitHub Desktop.
Save G33kDude/9f9ec5281a8d574847ca28540425343b to your computer and use it in GitHub Desktop.
Hides the quick logout button for the AutoHotkey forums
// ==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