Youtube 2020 improvements

All Youtube improvements in one pack

目前為 2020-12-01 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Youtube 2020 improvements
// @version      0.2
// @description  All Youtube improvements in one pack
// @author       Burlaka.net
// @match        *://*.youtube.com/*
// @match        *://youtube.com/*
// @require      https://code.jquery.com/jquery-latest.js
// @grant        none
// @namespace    http://tampermonkey.net/
// ==/UserScript==

(function() {
  'use strict';

  // hide three dots in list so we can see date when video published (on narrow screens)
  function hideThreeDots() {
    if ($('#menu-container yt-icon-button#button.dropdown-trigger').length > 0) {
      $('#menu-container yt-icon-button#button.dropdown-trigger').remove();
      clearInterval(hideThreeDotsTimer);
    }
  }
  var hideThreeDotsTimer = setInterval(hideThreeDots, 1000);

//  $('ytd-playlist-panel-renderer#playlist .header').addClass('hidden');//.css('backgroundColor', '#ff6600') //hide();
  // Убирает заголовок плейлиста
  //$('#playlist .header').addClass('hidden').hide();

  //Убирает блок "Для этого видео запись чата отключена."
  //$('ytd-message-renderer.ytd-live-chat-frame').addClass('hidden').hide();
  //$('.ytd-live-chat-frame').addClass('hidden').hide();

  $('body').append('<style>\
#playlist .header {display:none !important;}\
ytd-live-chat-frame#chat {display:none !important;}\
#player-theater-container, .html5-video-player {width: 854px;height:480px !important; margin: 0 auto;}\
#container.ytd-masthead {height:34px}\
#page-manager.ytd-app{margin-top:34px}\
  </style>');
/*
ytd-watch-flexy[theater] #player-theater-container.ytd-watch-flexy, ytd-watch-flexy[fullscreen] #player-theater-container.ytd-watch-flexy {height: 480px;}\
*/

  $('ytd-mini-guide-renderer div.ytd-mini-guide-renderer').append('<ytd-mini-guide-entry-renderer class="style-scope ytd-mini-guide-renderer"><!--css-build:shady--><a id="endpoint" role="tab" class="yt-simple-endpoint style-scope ytd-mini-guide-entry-renderer" aria-selected="false" title="В тренде" href="/playlist?list=WL" aria-label="Смотреть позже"><yt-icon id="icon" class="guide-icon style-scope ytd-mini-guide-entry-renderer"><svg viewBox="0 0 24 24" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%;"><g class="style-scope yt-icon"><path d="M12 3.67c-4.58 0-8.33 3.75-8.33 8.33s3.75 8.33 8.33 8.33 8.33-3.75 8.33-8.33S16.58 3.67 12 3.67zm3.5 11.83l-4.33-2.67v-5h1.25v4.34l3.75 2.25-.67 1.08z" class="style-scope yt-icon"></path></g></svg><!--css-build:shady--></yt-icon><span class="title style-scope ytd-mini-guide-entry-renderer">Смотреть позже</span><paper-tooltip animation-delay="0" offset="4" position="right" class="style-scope ytd-mini-guide-entry-renderer" role="tooltip" tabindex="-1" hidden="" style="--paper-tooltip-delay-in:0ms;"><!--css-build:shady--><div id="tooltip" class="hidden style-scope paper-tooltip">Смотреть позже</div></paper-tooltip></a></ytd-mini-guide-entry-renderer>');
  //$('#container.ytd-masthead').css('height','34px');
  //$('#page-manager.ytd-app').css('margin-top', '40px');

  //$('#player-theater-container, .html5-video-player').css('width', '854px').css('height', '480px').css('margin', '0 auto');

  // comment autoexpand onmouseover
  $(document).on('mouseover', '.ytd-item-section-renderer .ytd-comment-renderer ytd-expander', function(e) {
    var $this = $(this);
    $this.removeAttr('collapsed');
    $this.parent().find('#more').addAttr('hidden');
  });

  // video info autoexpand onmouseover
  $(document).on('mouseover', 'ytd-expander.ytd-video-secondary-info-renderer', function(e) {
    var $this = $(this);
    $this.removeAttr('collapsed');
    $this.find('#collapsible').removeAttr('hidden');
    $this.find('#less').removeAttr('hidden');
    $this.find('#more').addAttr('hidden');
  });
})();

QingJ © 2025

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