Skip to content

Instantly share code, notes, and snippets.

View midlucks's full-sized avatar

mid midlucks

  • 16:44 (UTC +09:30)
View GitHub Profile
@midlucks
midlucks / axiom-domain-blocker.js
Last active October 1, 2025 12:23
Simple script to paste in your console on https://axiom.trade/ to remove buy buttons with certain domains in your new pairs
(function() {
// Script only runs on https://axiom.trade/pulse
if (!location.href.startsWith("https://axiom.trade/pulse")) {
return;
}
// Add more domains here
const BLOCKED_DOMAINS = ['uxento.io'];
const blockedTokens = new Set();