Skip to content

Instantly share code, notes, and snippets.

@Explosion-Scratch
Created July 28, 2024 14:21
Show Gist options
  • Save Explosion-Scratch/5abc8b27df713da1e0bd8843f61c8c57 to your computer and use it in GitHub Desktop.
Save Explosion-Scratch/5abc8b27df713da1e0bd8843f61c8c57 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Replace Alert with No-op on lmsys.org
// @namespace mailto:explosionscratch@gmail.com
// @version 1.0
// @description Replaces the alert function with a no-op on *.lmsys.org
// @match *://*.lmsys.org/*
// @run-at document-start
// @grant none
// ==/UserScript==
(function() {
'use strict';
var originalAlert = window.alert;
window.alert = function() {};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment