for you

undo twitter's terrible change

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.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

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         for you
// @namespace    twitter.com/takaiy0
// @version      0.3
// @description  undo twitter's terrible change
// @author       takaiyo
// @match        https://twitter.com/*
// @icon         none
// @grant        none
// ==/UserScript==


'use strict';

var isClicked;
const interval = setInterval(() => {
    var homes = document.querySelectorAll("[href='/home']")
    for (var e of homes) {
        if (e.textContent == "Following") {

            e.click();
            clearInterval(interval);
        }

    }
}, 50);
setTimeout(() => {clearInterval(interval)}, 15000);

//followDiv = document.querySelector('.css-901oao.r-1awozwy.r-1bwzh9t.r-6koalj.r-18u37iz.r-37j5jr.r-a023e6.r-majxgm.r-1pi2tsx.r-1777fci.r-rjixqe.r-bcqeeo.r-1l7z4oj.r-95jzfe.r-bnwqim.r-qvutc0');