Bring back red subscribe button

What have you done Suzan!?

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!)

// ==UserScript==
// @name         Bring back red subscribe button
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  What have you done Suzan!?
// @author       Haddle
// @match        *://www.youtube.com/*\
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    var changeColour = function(){
        var feedback_buttons= document.getElementsByClassName("yt-spec-button-shape-next yt-spec-button-shape-next--filled yt-spec-button-shape-next--mono yt-spec-button-shape-next--size-m");
        var feedback_text = document.getElementsByClassName("yt-core-attributed-string yt-core-attributed-string--white-space-no-wrap");
        for(var i=0;i<feedback_buttons.length;i++){feedback_buttons[i].style="background-color:#f00"};
        for(i=0;i<feedback_text.length;i++){feedback_text[i].style="color:#fff"};
        console.log("[Red Sub Button]: changed")
    }
    window.onload = changeColour
})();