Hello, this is my new adchievement : I removed the blur overlay when I hover on MotoGP video player !!! I hate it !!! This is (part of) my Tampermonkey script (I have other mods for other sites so I used a if…):

// ==UserScript==
// @name        Ber
// @namespace   Violentmonkey Scripts
// @match        *://*/*
// @grant       none
// @version     1.0
// @author      -
// @description 17/02/2023 09:31:14
// ==/UserScript==
(function() {
    'use strict';
    if ( document.location.host.indexOf("motogp.com") !== -1 ) {
        document.getElementsByClassName("vjs-background").item(0).remove();
    }
});