Date: June 21st, 2025 9:54 PM
Author: Mildly autistic exhilarant business firm laser beams
To use this jQuery script in Firefox, the easiest and most reliable method is to use a userscript manager like Tampermonkey or Violentmonkey, which lets you inject custom scripts into specific websites automatically.
✅ Step-by-Step: Use the Script in Firefox with Tampermonkey
1. Install Tampermonkey
Go to https://tampermonkey.net/?ext=d2&browser=firefox
Click "Add to Firefox"
Follow the prompts to enable the extension
2. Create a New Userscript
Once installed:
Click the Tampermonkey icon (🟧) in your Firefox toolbar
Select "Create a new script"
Replace the default content with this:
// ==UserScript==
// @name Hide Posts by Username on AutoAdmit
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Hide posts by a specific author on AutoAdmit (e.g., https://imgur.com/a/o2g8xYK)
// @author You
// @match *://*.autoadmit.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
// Wait for jQuery to load if needed
function waitForjQuery(callback) {
if (typeof window.jQuery === 'undefined') {
let script = document.createElement('script');
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js";
script.onload = callback;
document.head.appendChild(script);
} else {
callback();
}
}
waitForjQuery(function() {
$(document).ready(function() {
$("table").each(function() {
const $table = $(this);
const html = $table.html();
if (html.includes("<b>Author:</b> https://imgur.com/a/o2g8xYK")) {
$table.hide();
}
});
});
});
})();
3. Save the Script
Press File → Save or click the disk icon.
Refresh the AutoAdmit page — posts by https://imgur.com/a/o2g8xYK will be hidden automatically.
(http://www.autoadmit.com/thread.php?thread_id=5737231&forum_id=2...id#49038628)