Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Chsbrgr/daaa327fb9352b18dde395c5c4ba7b94 to your computer and use it in GitHub Desktop.

Select an option

Save Chsbrgr/daaa327fb9352b18dde395c5c4ba7b94 to your computer and use it in GitHub Desktop.
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;}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment