Twitter remove t.co

将 Twitter 中所有 t.co 转为真实链接,仅适用于新 UI

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Twitter remove t.co
// @namespace    https://greasyfork.org/zh-CN/users/193133-pana
// @homepage     https://sailboatweb.com
// @version      1.0.0
// @description  将 Twitter 中所有 t.co 转为真实链接,仅适用于新 UI
// @author       pana
// @include      http*://*twitter.com/*
// @require      https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js
// @grant        none
// ==/UserScript==

(function() {
	'use strict';

	function init() {
		let a_tags = $('a[href^="https://t.co/"]');
		$.each(a_tags, function(index, item) {
			let real_url;
			if (a_tags.eq(index).attr('data-expanded-url') !== undefined) {
				real_url = a_tags.eq(index).attr('data-expanded-url')
			} else if (item.title !== '') {
				real_url = item.title
			} else if ((a_tags.eq(index).find('div').length === 0) && (item.innerText !== "") && (item.innerText.indexOf('…') === -1)) {
				if (/^https?:\/\//i.test(item.innerText)) {
					real_url = item.innerText
				} else {
					real_url = 'http://' + item.innerText
				}
			} else {
				real_url = item.href
			}
			item.href = real_url
		})
	}
	init();
	let observer = new MutationObserver(function() {
		init()
	});
	let listenerContainer = document.body;
	let option = {
		'childList': true,
		'characterData': true,
		'subtree': true,
	};
	observer.observe(listenerContainer, option)
})();