Plain text youtube subscription list

Greatly compacts list view layout, hides thumbnails and noise. Only works in subscriptions -> list view!

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

/* ==UserStyle==
@name        Plain text youtube subscription list
@license     public domain
@description Greatly compacts list view layout, hides thumbnails and noise. Only works in subscriptions -> list view!
@version 0.0.1.20200720184433
@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;
}
}