Better XVideos.com

Always expand video to large size - 6/21/2021, 9:30:51 AM

As of 21/06/2021. See the latest version.

// ==UserScript==
// @name        Better XVideos.com
// @namespace   Violentmonkey Scripts
// @match       https://www.xvideos.com/video*
// @grant       none
// @version     1.0
// @author      -
// @description Always expand video to large size - 6/21/2021, 9:30:51 AM
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js
// ==/UserScript==

this.$ = jQuery.noConflict(true)


$("div#video-player-bg").ready(function () {
  // 
  // player = $("div#player-container")
  // $("img[title='Double player size']").trigger("click") // only if it's not enlarged already
  window.xvideos.player.toggleSize(!0)
})