-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.js
65 lines (59 loc) · 1.55 KB
/
popup.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
/* textadkill, Lerie Taylor: 2021,2022 */
// popup.js
btnKillAds.addEventListener("click", async () => {
let [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
console.log(tab);
chrome.scripting.executeScript({
target: { tabId: tab.id },
function: killAds,
});
});
function killAds() {
var ads = [
'.videocontentmobile',
'#div-gpt-ad-1565016699961-0',
'#secondary',
'#google-bottom-ads',
'#sticky-ad',
'#google-top-ads',
'#google-right-ads',
'.rotation-manager-slot-wrapper',
'#vi-smartbanner',
'.a-wrap',
'.adsbyvli',
'.col-4.main-sidebar.has-sep',
'.adsbyvli.vliinterstial',
'.adsbyvli.videoslider',
'.a-wrap.a-wrap-base.a-wrap-5',
'.video-ad',
'.thumb-block.thumb-ad.thumb-nat-ad.no-rotate.tb_full_init',
'#ad-footer',
'.game-over-ad-component',
'.bxc',
'.celtra-ad-inline-host',
'.ad ad--epic.ad--desktop2',
'.ad.ad--epic.ad--desktop',
'.content-ad-content',
'.short-sidebar-ad-component.short-sidebar-ad-top',
'.short-sidebar-ad-component.short-sidebar-ad-bottom',
'.sidebar-ad',
'.index-content-ad-wrapper',
'.col-are-ads.ng-isolate-scope',
'.uEierd',
'.ads',
'.downloadnews',
'.ezoic-ad',
'#div-gpt-ad-1387773334918-0',
'.ezoic-pub-ad-placeholder-109',
'.ezoic-adpicker-ad',
'.ezmob-footer.ezoic-floating-bottom.ezo_ad.ezmob-footer-desktop',
'#rightad',
'#div-gpt-ad-1387773334918-1'
];
ads.forEach((ad) => {
var adElem = document.querySelector(ad);
if(adElem) adElem.remove();
});
console.log("killing ads");
}
//window.onerror = ignoreerror();