Extend youtube player styles (Background, Borders)

Makes youtube player round and hides black background

目前為 2025-02-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Extend youtube player styles (Background, Borders)
// @namespace   shiftgeist
// @match       https://www.youtube.com/*
// @grant       GM_addStyle
// @version     20250222
// @author      shiftgeist
// @description Makes youtube player round and hides black background
// @run-at      document-start
// @license     GNU GPLv3
// ==/UserScript==

GM_addStyle(`
  ytd-watch-flexy[full-bleed-player] #full-bleed-container.ytd-watch-flexy {
    background: none;
  }

  .video-stream.html5-main-video {
    overflow: hidden;
    border-radius: 4px;
  }
`);