[Deprecated] Show Twitter List

Show twitter list in title.

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         [Deprecated] Show Twitter List
// @namespace    https://wiki.gslin.org/wiki/ShowTwitterList
// @version      0.20190530.0
// @description  Show twitter list in title.
// @author       Gea-Suan Lin <[email protected]>
// @match        https://twitter.com/*
// @grant        none
// @run-at       document-end
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Don't run this script inside iframe.
    if (window !== top) {
        return;
    }

    const url_re = new RegExp('^https://twitter\.com/[^/]+(/media)?$');

    if (!document.location.href.match(url_re)) {
        return;
    }

    let user_id = document.querySelector('.ProfileNav[data-user-id]').getAttribute('data-user-id');
    let url = '/i/' + user_id + '/lists';
    console.debug('Trying to fetch ' + url);

    fetch(url).then(res => {
        return res.json();
    }).then(j => {
        let h = document.createElement('div');
        h.innerHTML = j.html;

        console.debug('Got ' + url, h);

        let c = h.querySelector('.membership-checkbox[checked="checked"]');
        if (!c) {
            return;
        }

        let l = c.parentElement.innerText.trim();
        let title = document.getElementsByTagName('title')[0];
        title.innerHTML = '(' + l + ') ' + title.innerHTML;
    });
})();