-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
93 lines (87 loc) · 2.95 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
const intervalId = setInterval(() => {
// Always in use; That's why on top
const path = window.location.pathname;
// Call the function
updateTitleAndFavicon();
startUp();
// Only hide if the user is on the Home Feed
if (path === "/home") {
// Jump to "following" page
autoClickOnce();
homePart();
}
// Only hide if the user is on the Explore Page
if (path === "/explore") {
const tabList = document.querySelector(
'div[role="tablist"][data-testid="ScrollSnap-List"]'
);
if (tabList) {
tabList.style.visibility = "hidden";
}
const feed = document.querySelector('div[aria-label="Timeline: Explore"]');
if (feed) {
feed.style.visibility = "hidden";
}
}
// Check if the path matches the pattern
if (/^\/[^/]+\/communities\/explore/.test(path)) {
console.log("community explorating");
communitiesExplore();
}
// Check if the user is on profile section content overview
if (/^\/[^\/]+\/?$/.test(path)) {
chrome.storage.local.get(["hideFeed"], (res) => {
const hideFeed = res.hideFeed ?? false;
const currentUrl = window.location.href;
if (!hideFeed) {
if (
currentUrl !== "https://x.com/home" &&
currentUrl !== "https://x.com/explore" &&
currentUrl !== "https://x.com/i" &&
currentUrl !== "https://x.com/messages" &&
currentUrl !== "https://x.com/jobs" &&
currentUrl != "https://x.com/logout"
) {
const editProfileButton = document.querySelector(
"[role='link'][data-testid='editProfileButton']"
);
/* Überprüfe ob der "Edit profile" Knopf vorhanden ist zum unterscheiden zwischen eingeloggtem Profil und besuchtem Profil */
if (!editProfileButton) {
window.location.href = "https://x.com/home";
}
}
}
});
}
// If you follow a community
if (/^\/[^/]+\/communities\/?$/.test(path)) {
console.log("This is a community");
const tabList = document.querySelector(
'div[role="tablist"][data-testid="ScrollSnap-List"]'
);
if (tabList) {
tabList.style.display = "none";
}
}
// If someone jumps to a post, redirect to normal page
if (window.location.pathname.match(/\/status\/\d+/)) {
chrome.storage.local.get(["hideFeed"], (res) => {
const hideFeed = res.hideFeed ?? false;
if (!hideFeed) {
window.location.href = "https://x.com/home";
}
});
}
// Remove community suggestion including their representing content
if (window.location.href.includes("x.com/i/communities/suggested")) {
console.log("community Suggestions");
communitySuggestions();
}
// Display community suggestions while you're searching for one
if (window.location.href.includes("x.com/i/communities/suggested?q=")) {
console.log("community Suggestions while search");
communitiesSuggestedMore();
}
sideBlock();
}, 1000); // Check every 1 second
stopWatchToggle();