Plain text youtube subscription list viewube

Greatly compacts list view layout, hides thumbnails and noise.

当前为 2020-07-20 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

/* ==UserStyle==
@name        Plain text youtube subscription list viewube
@license     public domain
@description Greatly compacts list view layout, hides thumbnails and noise.
@version 0.0.1.20200720184221
@namespace https://greasyfork.org/users/40252
==/UserStyle== */

@-moz-document url("https://www.youtube.com/feed/subscriptions?flow=2") {
/* Hide uploader picture */
.grid-subheader.ytd-shelf-renderer {
    display: none;
}

/* Hide video thumbnail */
ytd-thumbnail {
    display: none;
}

/* Hide description - it's usually noise */
#description-text {
    display: none !important;
}

/* Hide view count */
#metadata > :nth-child(2) span:nth-child(1) {
    display: none !important;
}

/* Hide verification emblem */
.badge-style-type-verified {
    display: none !important;
}

/* Compact list */
#contents.ytd-shelf-renderer {
    margin-top: .5rem;
}
ytd-expanded-shelf-contents-renderer {
    margin-bottom: .5rem;
}

.ytd-video-renderer {
    max-width: none !important;
}

ytd-item-section-renderer.ytd-section-list-renderer {
    padding-left: 1rem;
}

ytd-item-section-renderer.ytd-section-list-renderer:nth-child(even) {
    background: #333 !important;
}

ytd-item-section-renderer.ytd-section-list-renderer:hover {
    background: #555 !important;
}

/* All video titles lowercase - anti clickbait */
#video-title.ytd-video-renderer {
    text-transform: lowercase;
}
}