Sleazy Fork is available in English.

YouTube 2017 Polymer Design

Restyle YouTube to look like 2017 Polymer/Material Design Lite version

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey 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 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!)

// ==UserScript==
// @name         YouTube 2017 Polymer Design
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Restyle YouTube to look like 2017 Polymer/Material Design Lite version
// @author       Your Name
// @match        *://www.youtube.com/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    // Inject CSS styles
    GM_addStyle(`
        /* General Layout Adjustments */
        #container.ytd-masthead,
        #search-input.ytd-searchbox,
        ytd-topbar-logo-renderer #logo {
            background-color: #ffffff;
            border-bottom: 1px solid #e0e0e0;
        }

        /* Adjusting the Navigation Bar */
        #container.ytd-masthead {
            padding: 0 16px;
        }

        ytd-guide-section-renderer {
            padding: 8px 0;
        }

        /* Sidebar Colors and Font */
        ytd-guide-entry-renderer a {
            color: #212121 !important;
            font-weight: 400;
        }

        /* Main Background Color */
        body,
        #content.ytd-app {
            background-color: #f9f9f9 !important;
        }

        /* Video Titles */
        ytd-video-renderer #video-title {
            color: #1a0dab;
            font-family: Roboto, Arial, sans-serif;
            font-size: 14px;
            font-weight: 500;
        }

        /* Video Meta Information */
        ytd-video-meta-block #metadata-line span {
            color: #606060;
        }

        /* Buttons */
        ytd-toggle-button-renderer,
        ytd-button-renderer {
            background-color: #f1f1f1;
            border-radius: 2px;
            border: 1px solid #e0e0e0;
            color: #212121;
        }

        /* Sidebar Heading */
        ytd-guide-section-renderer #header {
            color: #757575;
            font-family: Roboto, Arial, sans-serif;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
        }

        /* Video Grid Adjustments */
        ytd-rich-grid-media {
            margin-bottom: 16px;
        }

        /* Restore old search bar design */
        #search.ytd-searchbox {
            background-color: #ffffff;
            border-radius: 2px;
            border: 1px solid #e0e0e0;
        }

        #search-input.ytd-searchbox {
            padding: 0 16px;
        }

        /* Old-style Material Design Buttons */
        paper-button {
            background-color: #f1f1f1;
            color: #212121;
            border-radius: 2px;
            border: 1px solid #e0e0e0;
            font-weight: 500;
            text-transform: uppercase;
        }

        /* Footer Colors */
        #footer.ytd-app {
            background-color: #ffffff;
            border-top: 1px solid #e0e0e0;
        }
    `);
})();