Sleazy Fork is available in English.

Remove Huge Annoying Pause Button from Video Player

Prevents from killing watching experience when mouse pointer is left inactive on timeline

// ==UserScript==
// @name        Remove Huge Annoying Pause Button from Video Player
// @namespace   Violentmonkey Scripts
// @match       https://www.pornhub.com/view_video.php*
// @author      alopatindev
// @license     MIT
// @version     0.1
// @description Prevents from killing watching experience when mouse pointer is left inactive on timeline
// @icon        https://www.google.com/s2/favicons?sz=64&domain=pornhub.com
// @description 4/21/2024, 4:33:58 AM
// ==/UserScript==

(function() {
  'use strict';
  const bigPlay = document.querySelector('.mgp_bigPlay.mgp_playbackParentHidePauseNoControls');
  if (bigPlay) {
    bigPlay.parentNode.removeChild(bigPlay);
  }
})()