Extend youtube player styles (Background, Borders)

Makes youtube player round and hides black background

目前为 2025-02-25 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Extend youtube player styles (Background, Borders)
  3. // @namespace shiftgeist
  4. // @match https://www.youtube.com/*
  5. // @grant GM_addStyle
  6. // @version 20250225
  7. // @author shiftgeist
  8. // @description Makes youtube player round and hides black background
  9. // @run-at document-start
  10. // @license GNU GPLv3
  11. // ==/UserScript==
  12.  
  13. GM_addStyle(`
  14. ytd-watch-flexy[full-bleed-player] #full-bleed-container.ytd-watch-flexy {
  15. background: none !important;
  16. }
  17.  
  18. .video-stream.html5-main-video {
  19. overflow: hidden;
  20. border-radius: 4px;
  21. }
  22. `);