TSINAH, can you write a script that blocks all of NSAM's posts?
| spectacular shrine mad-dog skullcap | 01/08/26 | | Jet Sanctuary Doctorate | 01/08/26 | | Excitant Goyim Space | 01/08/26 | | spectacular shrine mad-dog skullcap | 01/08/26 | | Excitant Goyim Space | 01/08/26 | | Jet Sanctuary Doctorate | 01/08/26 | | spectacular shrine mad-dog skullcap | 01/08/26 | | Jet Sanctuary Doctorate | 01/08/26 | | French home hominid | 01/08/26 | | Buck Broken | 01/08/26 | | Jet Sanctuary Doctorate | 01/08/26 | | French home hominid | 01/08/26 | | marvelous bright lay nibblets | 01/08/26 | | Jet Sanctuary Doctorate | 01/08/26 | | French home hominid | 01/08/26 | | vivacious mood | 01/08/26 | | Peach dysfunction | 01/08/26 | | Jet Sanctuary Doctorate | 01/08/26 | | Peach dysfunction | 01/08/26 | | vivacious mood | 01/08/26 | | Peach dysfunction | 01/08/26 | | .,.,.,.,.,...,.,,.,,.....,.,..,.,,...,.,.,,...,. | 01/08/26 | | https://i.imgur.com/ovcBe0z.png | 01/08/26 | | ''''"""''""'" | 01/08/26 | | https://i.imgur.com/ovcBe0z.png | 01/08/26 | | .,.,.:,,.,:.,:,,:,.::,:.:.,.,:.,:,,.:.,.,:.::, | 01/08/26 | | ...,,..;...,,..,..,...,,,;.., | 01/08/26 | | chopped and screwed millennial unc | 01/08/26 | | Smoked Double Baked Sweet Potato Skins and Wings | 01/08/26 | | As far as they will go but even farther | 01/08/26 | | fully online and responsive | 01/08/26 | | https://i.imgur.com/ovcBe0z.png | 01/08/26 |
Poast new message in this thread
 |
Date: January 8th, 2026 8:59 AM Author: French home hominid
‘On AI’
Jewish intelligence folks
Ps your kids will be homeless
(http://www.autoadmit.com/thread.php?thread_id=5818947&forum_id=2#49571671) |
Date: January 8th, 2026 9:17 AM Author: Peach dysfunction
Here is a script that works on Firefox:
1. Install Violentmonkey (or Greasemonkey/Tampermonkey) from Firefox Add-ons
2. Click the extension icon → "+" or "Create new script"
3. Paste the script content and save
// ==UserScript==
// @name AutoAdmit User Hider
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Hide posts from specific users on AutoAdmit
// @match *://www.autoadmit.com/*
// @match *://autoadmit.com/*
// @match *://www.xoxohth.com/*
// @match *://xoxohth.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Add usernames to block here (case-insensitive matching)
const BLOCKED_USERS = [
'https://imgur.com/a/o2g8xYK'
];
function hidePostsByUser() {
// Find all post tables (width=700)
const tables = document.querySelectorAll('table[width="700"]');
tables.forEach(table => {
// Look for author text within the table
const tableText = table.innerHTML;
for (const blockedUser of BLOCKED_USERS) {
// Check if this post is by a blocked user
// The author format is: <b>Author:</b> USERNAME
const authorPattern = new RegExp(
`<b>Author:<\\/b>(?: |\\s)*(?:<[^>]*>)*\\s*${escapeRegex(blockedUser)}`,
'i'
);
if (authorPattern.test(tableText)) {
table.style.display = 'none';
// Also hide the preceding <br> and <A name> if present
let prev = table.previousElementSibling;
while (prev && (prev.tagName === 'BR' || prev.tagName === 'A' || prev.tagName === 'P')) {
prev.style.display = 'none';
prev = prev.previousElementSibling;
}
break;
}
}
});
// Also hide from thread listing (the summary table at top)
const summaryRows = document.querySelectorAll('table[cellpadding="0"][cellspacing="0"] td');
summaryRows.forEach(td => {
for (const blockedUser of BLOCKED_USERS) {
if (td.textContent.includes(blockedUser)) {
// Find parent row and hide it
let parent = td.parentElement;
if (parent && parent.tagName === 'TR') {
parent.style.display = 'none';
} else if (parent) {
parent.style.display = 'none';
}
}
}
});
}
function escapeRegex(string) {
return string.replace(/[.*+?^${}()|[\]\\\/]/g, '\\$&');
}
// Run on page load
hidePostsByUser();
// Also run after a short delay in case of dynamic content
setTimeout(hidePostsByUser, 500);
})();
(http://www.autoadmit.com/thread.php?thread_id=5818947&forum_id=2#49571708) |
 |
Date: January 8th, 2026 9:46 AM
Author: .,.,.,.,.,...,.,,.,,.....,.,..,.,,...,.,.,,...,.
what'd you say lol breh? Try again
(http://www.autoadmit.com/thread.php?thread_id=5818947&forum_id=2#49571781) |
 |
Date: January 8th, 2026 10:14 AM
Author: .,.,.:,,.,:.,:,,:,.::,:.:.,.,:.,:,,.:.,.,:.::,
180000 installing now
(http://www.autoadmit.com/thread.php?thread_id=5818947&forum_id=2#49571843) |
 |
Date: January 8th, 2026 10:16 AM
Author: ...,,..;...,,..,..,...,,,;..,
180 does this work on chromium browsers?
(http://www.autoadmit.com/thread.php?thread_id=5818947&forum_id=2#49571853) |
|
|