Last active
March 13, 2025 14:10
-
-
Save daffodilistic/245d5c3b817fe9f1220f509c996ff2f8 to your computer and use it in GitHub Desktop.
EDMW QOL
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 EDMW QOL | |
// @namespace forums.hardwarezone.com.sg | |
// @include https://forums.hardwarezone.com.sg/* | |
// @require https://code.jquery.com/jquery-3.6.0.min.js | |
// @version 1 | |
// @grant GM.addStyle | |
// ==/UserScript== | |
/* global $ */ | |
if ($('body').hasClass('gotoverlay')) { | |
$('body').removeClass('gotoverlay'); | |
} | |
if ($('#gpt-ad-skyscraper-container') !== null) { | |
$('#gpt-ad-skyscraper-container').removeClass('gpt-ad-skyscraper-container'); | |
} | |
$('.p-body-inner').css('max-width', '100%'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment