Disable YouTube Glow/Ambilight

Script that removes the shitty glow/ambilight effect on the new YouTube downgrade. It sucks ass because it's in 8-bit colorspace, has a smoothing effect, and is overall just weird on your eyes, seriously thoguht my eyes were fucked lmao

目前為 2022-10-26 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Disable YouTube Glow/Ambilight
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Script that removes the shitty glow/ambilight effect on the new YouTube downgrade. It sucks ass because it's in 8-bit colorspace, has a smoothing effect, and is overall just weird on your eyes, seriously thoguht my eyes were fucked lmao
  6. // @author TB-303
  7. // @match *://*.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15.  
  16. GM_addStyle
  17. (`#cinematics.ytd-watch-flexy {
  18. display: none;
  19. }
  20. `)
  21.  
  22. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址