// ==UserScript== // @name Disable Autofocus // @description Completely block all programmatic autofocus on chatgpt.com // @match https://chatgpt.com/* // @match https://chat.z.ai/* // @run-at document-start // @version 0.0.1.20250728182155 // @namespace https://greasyfork.org/users/1435046 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // block all programmatic focus HTMLElement.prototype.focus = function() { // no-op }; // block all programmatic scrollIntoView Element.prototype.scrollIntoView = function() { // no-op }; })();