Greasy Fork is available in English.

Remove Blur from GPT

evita che GPT si blocchi mentre navighi su altre pagine o fai altre cose

// ==UserScript==
// @name         Remove Blur from GPT
// @name:en      Navigate to other other webpages while GPT processes a response
// @name:it      Naviga su altre pagine mentre GPT elabora una risposta
// @namespace    http://tampermonkey.net/
// @version      1.2
// @description  evita che GPT si blocchi mentre navighi su altre pagine o fai altre cose
// @description:en avoid GPT pausing while browsing other pages or doing other things
// @author       Flejta
// @match        *chat.openai.com*
// @license MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.addEventListener('load', function() {
        var elements = document.getElementsByTagName('*');
        for (var i = 0; i < elements.length; i++) {
            elements[i].removeAttribute('onblur');
        }
    });
})();