-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.js
38 lines (33 loc) · 1.36 KB
/
content.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
// Çerezleri temizlemek için
const clearCookies = () => {
document.cookie.split(";").forEach(cookie => {
const eqPos = cookie.indexOf("=");
const name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/";
});
};
// Yerel depolama verilerini temizlemek için
const clearLocalStorage = () => {
localStorage.clear();
};
// Kullanıcı bilgilerini ve oturum durumunu içeren DOM elemanlarını gizler
const hideUserInfo = () => {
const userElements = document.querySelectorAll('[id*="avatar"], [class*="user"], [class*="account"]');
userElements.forEach(el => el.style.display = 'none');
};
// Reklamları hedeflemek için DOM manipülasyonu yapar.
const removeAds = () => {
const adElements = document.querySelectorAll('.video-ads, .ad-container, .ytp-ad-module, .ytp-ad-overlay-container, .ytp-ad-image-overlay');
adElements.forEach(ad => ad.remove());
};
// Çerezleri, yerel depolamayı temizle ve kullanıcı bilgilerini gizle
const performCleanup = () => {
clearCookies();
clearLocalStorage();
hideUserInfo();
removeAds();
};
// Sayfa yüklendiğinde ve DOM değiştiğinde işlem yapmak
document.addEventListener('DOMContentLoaded', performCleanup);
const observer = new MutationObserver(performCleanup);
observer.observe(document.body, { childList: true, subtree: true });