Skip to content

Instantly share code, notes, and snippets.

@daffodilistic
Last active March 13, 2025 14:10
Show Gist options
  • Save daffodilistic/245d5c3b817fe9f1220f509c996ff2f8 to your computer and use it in GitHub Desktop.
Save daffodilistic/245d5c3b817fe9f1220f509c996ff2f8 to your computer and use it in GitHub Desktop.
EDMW QOL
// ==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