Youtube Scrollable Right Side Description

Youtube description is moved on the right, expanded and scrollable

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

  1. // ==UserScript==
  2. // @name Youtube Scrollable Right Side Description
  3. // @description Youtube description is moved on the right, expanded and scrollable
  4. // @version 1.2
  5. // @author SH3LL
  6. // @license MIT
  7. // @match *://*.youtube.com/*
  8. // @include *://*.youtube.com/watch*
  9. // @grant none
  10. // @run-at document-end
  11. // @noframes
  12. // @namespace https://gf.qytechs.cn/users/762057
  13. // ==/UserScript==
  14.  
  15. (function(){
  16. 'use strict';
  17.  
  18. window.addEventListener('yt-page-data-updated', function () {
  19. let player = document.querySelector("#player");
  20. let player_height = player.clientHeight;
  21. let my_height = player_height-100;
  22.  
  23. document.querySelector('#secondary-inner').prepend(document.getElementById('meta-contents'));
  24. let description = document.getElementById('meta-contents');
  25. description.children[0].children[0].children[1].setAttribute("style", "--ytd-expander-collapsed-height:auto !important; margin-left: 0; overflow: auto; max-width: 100%; font-size: 1.3rem;line-height: normal; max-height:"+my_height+"px;overflow: auto; width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0 !important; background-color: var(--yt-playlist-background-item); padding: 8px; border-bottom-width: 0px;--yt-endpoint-text-decoration: underline;");
  26. description.children[0].children[0].children[0].setAttribute("style", "padding-top:0px");
  27. }, 500);
  28.  
  29. })()

QingJ © 2025

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