Greasy Fork is available in English.

Twitter - own tweets

Adds a link to users' pages to search for tweets only from them (no retweets without comment).

< Feedback on Twitter - own tweets

Review: Good - script works

§
Posted: 2024.01.01.

非常好用 因為現在媒體功能沒有以前好用 我安裝後 修改了一部分 只顯示有圖片、影片的最新內容
const insertLink = (nameEl) => {
if (nameEl.parent().parent().parent().parent().find(`.${linkMarker}`).length) return;
const handle = nameEl.text();
const linkEl = $("")
.attr('href', `/search?q=from%3A%40${handle.slice(1)}%20filter%3Alinks%20-filter%3Areplies&src=typed_query&f=live`)
.text('【查看媒體】')
.addClass(linkMarker)
.css({
color: 'rgb(29, 161, 242)',
marginLeft: '5px',
textDecoration: 'none'
})
;
nameEl.parent().parent().after(linkEl);
};

Post reply

Sign in to post a reply.