🏠 Home 

YouTube - Disable rounded watch page side panel

This script disables the rounded watch page side panel in all uses. It is based on the Mid-2021-October 2022 Watch11 Reconstruct script by Magma_Craft which sadly no longer works.


Install this script?
  1. // ==UserScript==
  2. // @name YouTube - Disable rounded watch page side panel
  3. // @version 2023.06.09
  4. // @description This script disables the rounded watch page side panel in all uses. It is based on the Mid-2021-October 2022 Watch11 Reconstruct script by Magma_Craft which sadly no longer works.
  5. // @author Alpharetzy
  6. // @license MIT
  7. // @match https://www.youtube.com/*
  8. // @namespace https://greasyfork.org/en/users/1094802
  9. // @icon https://www.youtube.com/favicon.ico
  10. // @grant none
  11. // ==/UserScript==
  12. (function() {
  13. window['yt'] = window['yt'] || {};
  14. yt['config_'] = yt.config_ || {};
  15. yt.config_['EXPERIMENT_FLAGS'] = yt.config_.EXPERIMENT_FLAGS || {};
  16. var iv = setInterval(function() {
  17. yt.config_.EXPERIMENT_FLAGS.kevlar_watch_modern_panels = false;
  18. yt.config_.EXPERIMENT_FLAGS.kevlar_watch_panel_height_matches_player = false;
  19. }, 1);
  20. var to = setTimeout(function() {
  21. clearInterval(iv);
  22. }, 1000)
  23. })();