feat: added homepage feed showing followed accounts

This commit is contained in:
2025-11-21 23:03:58 -03:00
parent 62a4347b96
commit 73360e6972
7 changed files with 114 additions and 5 deletions

View File

@@ -37,6 +37,10 @@ function fetchAndParse(url) {
window.onload = function () {
const url = window.location.pathname;
const isTweet = url.indexOf("/status/") !== -1;
const isHomepage = url === "/" || url === "";
if (isHomepage) return;
const isIncompleteThread =
isTweet && document.querySelector(".timeline-item.more-replies") != null;