Skip to content

Instantly share code, notes, and snippets.

@Chsbrgr
Chsbrgr / Larger Crunchyroll Player-2025-10-08.user.js
Created October 8, 2025 19:56
Adds a CSS tag to set the height of the video player to 90% of the current browser window height
// ==UserScript==
// @name Larger Crunchyroll Player
// @version 2025-10-08
// @description Adds a CSS tag to set the height of the video player to 90% of the current browser window height
// @author chsbrg
// @match https://*.crunchyroll.com/*
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle('.video-player-wrapper {height: 90vh;}')