[Deprecated] Show Twitter List

Show twitter list in title.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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;
    });
})();