forked from DandelionSprout/adfilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha.txt
1830 lines (1802 loc) · 105 KB
/
a.txt
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Adblock Plus 3.4]
! Title: 🏡 a.txt (Imres filtre)
! Version: 09July2021v1-Personal
! Expires: 12 hours
! Description: This list, and any other lists whose version is suffixed with "-Personal", are _NOT_ intended for public use, except for 1) those who wish to authentically reproduce my list setup in issue reports, and 2) enthusiasts who want to try out pre-spin-off pre-alpha list concepts of mine.
! /\/\ Supercompilations: /\/\
!#include AnnoyancesList
!#include AntiRacismList.txt
!#include AntiSubmissiveEroticaList.txt
!#include VeryThoroughWebsiteCleaner.txt
!#include TwitchEvenMorePureViewingExperience.txt
!#include Sensitive%20lists/Dandelion%20Sprout's%20Anti-Religion%20List.txt
!#include AntiNonNewsList.txt
!#include AntiBadCapitalismList.txt
!#include AntiGachaAndKnockoffGamesList.txt
!#if !env_mobile
!#include WebsiteStretcher4K.txt
!#endif
! /\/\ Standalone compilations: /\/\
!#include Anti-Skype%20List.txt
!#include HaveIBeenPwnedPasteRemover.txt
!#include Imperial%20Units%20Remover.txt
!#include WordPressTranslatorAssistant.txt
!#include AntiKpopSpammersTwitter.txt
!#include AntiPorkMeatOnRestaurantMenusList.txt
!#include Sensitive%20lists/AntiWeebBoobGamesList.txt
!#include Anti-'Google%20Hangouts'%20List.txt
!#if !adguard
!#include UndertaleRemoverForSoundCloud.txt
!#endif
!#if !env_mobile
!#include Anti-'Christmas%20carols'%20List.txt
!#include NorwegianCashbackAssistantReborn.txt
!#endif
! ——/——/——/——/——/——/——/——/——/——/——/——/——/——/——/——
finn.no#?#.ads__unit:-abp-contains(Emirates Airline)
metacritic.com###primary_menu_item_games
netflix.com#?#.ptrack-content:-abp-has(a[href*="70135743"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="70242311"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="80022632"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="80039517"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="80050008"])
nexusmods.com#?#li.mod-tile:-abp-contains(Queen Vanessa)
||sproutsluckycorner.wordpress.com/wp-includes/charts/admin-bar-hours-scale-2x.php?masterbar=1
!#if !env_mobile
dandelionsprout.asuscomm.com#?#.container:style(max-width: 99vw !important)
dandelionsprout.asuscomm.com#?#.card-table-overflow--limited:style(max-height: 30vh !important)
dandelionsprout.asuscomm.com#?##disallowed_clients:style(min-height: 300px)
dandelionsprout.asuscomm.com#?#.dashboard .card:not(.card--full):style(height: unset !important)
!#endif
twitch.tv##.chat-line__message[data-room=vinesauce] > .message > strong[data-login=dandelionsprout]:style(background-color: #b1eac1 !important)
twitch.tv##.chat-line__message[data-room=vinesauce] > .message > strong[data-login=dandelionsprout] ~ span:style(background-color: #b1eac1 !important)
twitch.tv##.chat-line__message[data-room=jerma985] > .message > strong[data-login=dandelionsprout]:style(background-color: #b1eac1 !important)
twitch.tv##.chat-line__message[data-room=jerma985] > .message > strong[data-login=dandelionsprout] ~ span:style(background-color: #b1eac1 !important)
deezer.com#?#.song:-abp-contains(Gabfest)
twe.no#?#.is-4-desktop:-abp-has(img[alt^="Avatar: "])
ssbwiki.com#?#.infobox tr:-abp-has(a[href^="/Tournament_legal"])
en.wikipedia.org#?#.wikitable tr:-abp-contains(Saudi Arabia)
tvtropes.org#?##main-article > ul > li, .folder > ul > li:-abp-contains(Adult Fear)
! People I just really don't like, without it being deserving of going on public lists
twitch.tv#?#.chat-line__message:-abp-has(.chat-author__display-name:-abp-contains(InternetKraken))
twitch.tv#?#.chat-line__message:-abp-has(.chat-author__display-name:-abp-contains(AlphaTheKoolKid))
twitch.tv#?#.vod-message:-abp-has(.chat-author__display-name:-abp-contains(InternetKraken))
twitch.tv#?#.vod-message:-abp-has(.chat-author__display-name:-abp-contains(AlphaTheKoolKid))
discord.com#?#div[class^=member-]:-abp-contains((haha yes))
github.com#?#div[id^=issue_]:-abp-contains(/\skulf\o\on/)
github.com#?#div[id^=issue_]:-abp-contains(/\sc2xusnp\q6/)
pixiv.net#?#.ui-profile-popup[data-user_name]:upward(1):-abp-contains(webbedfingers)
discord.com##div[class*=blockedSystemMessage-]:upward(3)
! Websites I just really don't like, without it being deserving of going on public lists
||deviantart.com^$document
||latexstories.net^$document
||theverge.com$document
||palemoon.org^
||108.61.245.105^
!#if adguard
108.61.245.105$network
!#endif
!#if false
108.61.245.105
!#endif
! Caused by "AdGuard Annoyances Filter - Anti-Adblock"
@@||translate.googleusercontent.com^$generichide,badfilter
! I hate the weebs' total domination of Pixiv's new translation system
crowdin.com##.untranslated_phrase:has-text(アークナイツ)
crowdin.com##.untranslated_phrase:has-text(アズールレーン)
crowdin.com##.untranslated_phrase:has-text(ライブ!)
crowdin.com##.untranslated_phrase:has-text(オルティナ)
crowdin.com##.untranslated_phrase:has-text((FE))
crowdin.com##.untranslated_phrase:has-text(SAO)
crowdin.com##.untranslated_phrase:has-text(/^スカジ$/)
crowdin.com##.untranslated_phrase:has-text(ドールズフロントライン)
crowdin.com##.untranslated_phrase:has-text(フェルドロ)
crowdin.com##.untranslated_phrase:has-text(崩壊)
crowdin.com##.untranslated_phrase:has-text(ナイトメアブラッド)
crowdin.com##.untranslated_phrase:has-text(FEif)
crowdin.com##.untranslated_phrase:has-text(Истина)
crowdin.com##.untranslated_phrase:has-text(少女前線)
crowdin.com##.untranslated_phrase:has-text(プラマニクス)
crowdin.com##.untranslated_phrase:has-text(青雲映す碧波)
crowdin.com##.untranslated_phrase:has-text(/^マーアル$/)
crowdin.com##.untranslated_phrase:has-text(远山)
crowdin.com##.untranslated_phrase:has-text(タシュケント)
crowdin.com##.untranslated_phrase:has-text(フェリディミ)
crowdin.com##.untranslated_phrase:has-text(Зима)
crowdin.com##.untranslated_phrase:has-text(フロストリーフ)
crowdin.com##.untranslated_phrase:has-text(ファイアーエムブレム)
crowdin.com##.untranslated_phrase:has-text(アイドル)
crowdin.com##.untranslated_phrase:has-text(シャドウバース)
crowdin.com##.untranslated_phrase:has-text(ヤンデレ)
crowdin.com##.untranslated_phrase:has-text(ネプテューヌ)
crowdin.com##.untranslated_phrase:has-text(/^[ァ-ンー]{4}$/)
! TikTok
||tiktokcdn.com^
||tiktokv.com^
||tiktok.com^$3p
||byteoversea.com^
! This is fucking PERSONAL now that randos have ganged up on Vinesauce and lied about having talked to multiple "victims"
twitter.com#?#article:-abp-contains(/Believ(e|ing) all victim/i)
twitter.com#?#article:-abp-contains(/Always believe (the )?victim/i)
||resetera.com^
! When I search for MLP G5 art to share and adore across the internet, I'm looking for, you know, art. Not screenshot stock vectors pasted onto LGBTQ+ flags. Even more so when none of the characters are even close to being confirmed for LGBT in canon as of July 2021, and Sunny seems too young to fall in love.
tumblr.com#?#.post,div[tabindex]:-abp-contains(/MLP/i):-abp-contains(/G5|Gen ?5|Generation 5/i):-abp-contains(/trans[a-oq-z0-9 ]| bi |bisexual|pride|sapphic|gay|non-?binary|flag/i)
! ↓ Below are categories that may or may not get independent lists for public use one day. ↓
! And yes, there's a reason why a.txt is for private use only: It shows the seething despisement I have against large chunks of planet Earth.
! ★ = Fast-tracked to try to become the next list to be spun off.
!—————————————————————————————————————————————————————————————————————————————————————————————————————————————————
! Parent category: Media that annoys me
! Anti-'Teen Titans 2003'
! Teen Titans GO deserves the right to exist, and the tens of millions of hipsters out there who believe otherwise are monumentally wrong. Therefore I hate the fans of the 2003 cartoon.
!#if !adguard
reddit.com#?#.Post,.Comment:-abp-contains(/Teen Titan/i):not(:-abp-contains(/sixteen/i))
twitch.tv#?#.vod-message,.chat-line__message:-abp-contains(/Teen Titans/i)
!#endif
! Anti-'Filly Funtasia's fandom'
||funtasiadaily.com^$all
||filly.fandom.com^$all
||fillywiki.com^$all
||fillychan.com^$all
! Anti-'Cartoon hipsters', unless listed in other categories on this list
microsoft.com#?#.f-size-medium.m-content-placement-item:-abp-contains(Animation domination)
netflix.com#?#.ptrack-content:-abp-has(a[href*="70142394"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="70300626"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="80014749"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="80050007"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="80095649"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="80178943"])
netflix.com#?#.ptrack-content:-abp-has(a[href*="81004957"])
osu.ppy.sh#?#.beatmapsets__item:-abp-contains(My Life As A Teenage Robot)
kisscartoon.*##.related_list.full.series_links
kisscartoon.*##.mb15
!#if !adguard
artstation.com#?#.gallery-grid-item,.project:-abp-contains(Barkhat Gay Traveler)
!#endif
graphtreon.com##div.hotCreators-box.col-md-4
tiermaker.com##.community-rank-button
! Anti-weeb
osu.ppy.sh#?#.beatmapsets__item:-abp-contains(Waifu)
osu.ppy.sh#?#.beatmapsets__item:-abp-contains(ブレンド・S)
osu.ppy.sh#?#.beatmapsets__item:-abp-contains(ラブライブ)
osu.ppy.sh#?#.beatmapsets__item:-abp-contains(ソードアート・オンライン)
osu.ppy.sh#?#.beatmapsets__item:-abp-contains(Literature Club)
##a[href="/memes/subcultures/doki-doki-literature-club"]
!#if !adguard
reddit.com#?#.Post,.thing:-abp-contains(DDLC)
soundcloud.com#?#li:not([data-test-id]),.playableTile,.sound:-abp-contains(Halation)
soundcloud.com#?#li:not([data-test-id]),.playableTile,.sound:-abp-contains( halation)
!#endif
pixiv.net#?#section:-abp-contains(Daily ranking)
pixiv.net#?#section:-abp-contains(Popular tags)
pixiv.net#?#section:-abp-contains(Ongoing contests)
pixiv.net#?#section:-abp-contains(Contest results)
! Trading Card Game Remover for Steam
store.steampowered.com##a[data-ds-tagids*="1666"]:not([href*=Ticket_to_Ride], [href*=Durak], [href*=UNO], [href*=Tabletop])
! ———————————————————————————————————————————————————————————————————————————————————————————————
! Dumb news topics
!#if !adguard
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/Farmen/i)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/Torpet/i)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/Love Island/i)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/Ex on the Beach/i)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/Storbonde/i)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/Tvekamp/i)
!#endif
www.nrk.no#?#.kur-room:-abp-contains(«Skam»)
www.nrk.no#?#div.relation:-abp-contains(«Skam»)
ekstrabladet.dk##a[href*="/opinionen/pernillevermund/"]
! Depressing winter stuff
!#if !adguard
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=-jule]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*="/jule"]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=advent]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=-nisse]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*="/nisse"]
!#endif
nrk.no##a[href*="/stjernestoev"]
nrk.no##a[href*="/snoefall"]
nrk.no##a[href*=askepott]
nrk.no##a[href*=hovmester]
nrk.no#?#.kur-floor--apartment:-abp-contains(God jul)
! Highly inept and vague customer service forums
||answers.microsoft.com^$document
! ☆ Key stores with ID requirements ☆
||gameflip.com^$document
||cjs-cdkeys.com^$document
||mmoga.com^$document
||mygiftcardsupply.com^$document
||instant-gaming.com^$document
||wingamestore.com^$document
||offgamers.com^$document
! Pixiv presumably counts as social media, and thus shouldn't have its notifications be blocked
@@||onesignal.com^$domain=pixiv.net
@@/onesignalsdkworker.$domain=pixiv.net
@@/webpush/*$domain=pixiv.net
! Removes video suggestions on whatever sites
open.tube##.other-videos
||ixigua.com/api/feedv2^
trshow.info##.single-video-right
trshow.info###rvid
v.qq.com##.list_item
! All of this was becoming pretty literally actively life-threatening for me to read and know about
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=-trump- i]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=-trumps- i]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*="/trump-" i]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*="/trump_" i]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*="/trumps-" i]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*="-trump/" i]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=-trump_ i]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href$=-trump]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href$=-trumps]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=-senator]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*="/senator"]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=kongress]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=republikan]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=obama]
adressa.no,nrk.no,dr.dk,tv2.dk,ekstrabladet.dk,vg.no,dagbladet.no##a[href*=washington]
adressa.no,nrk.no,vg.no,dagbladet.no##a[href*=hvite-hus]
dr.dk,tv2.dk,ekstrabladet.dk##a[href*=hvide-hus]
nrk.no#?#.tracklp:-abp-has(a[href*=-trump-])
nrk.no#?#.tracklp:-abp-has(a[href*=-trumps-])
nrk.no#?#.tracklp:-abp-has(a[href*="/trump-"])
nrk.no#?#.tracklp:-abp-has(a[href*="/trumps-"])
nrk.no#?#.tracklp:-abp-has(a[href*=-senator])
nrk.no#?#.tracklp:-abp-has(a[href*="/senator"])
nrk.no#?#.tracklp:-abp-has(a[href*=kongress])
nrk.no#?#.tracklp:-abp-has(a[href*=republikan])
nrk.no#?#.kur-newsfeed__message:-abp-contains(/Trump/i)
nrk.no#?#.kur-newsfeed__message:-abp-contains(/Senator/i)
nrk.no#?#.kur-newsfeed__message:-abp-contains(/Kongress/i)
nrk.no#?#.kur-newsfeed__message:-abp-contains(/Republikan/i)
!#if !adguard
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(Trump)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/(^| )Senator/i)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/Kongress/i)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/Republikan/i)
tv2.no#?#.article,.lp-a,.col-sm-12,article.column:-abp-contains(/kandidat/i)
twitch.tv#?#.chat-line__message,.vod-message:-abp-contains(/liberals/i)
twitch.tv#?#.chat-line__message,.vod-message:-abp-contains(/liberal( |$)/i)
!#endif
||d.newsweek.com/json/home-opinion^
||d.newsweek.com/json/the-debate^
discord.com#?#div[id^=members-] > div[class^=layout-]:-abp-contains(ETHNOSTATE)
thehill.com#?#.views-row:-abp-has(a[href^="/opinion/"])
thehill.com#?#.thehill_carousel-processed > li:-abp-has(a[href^="/opinion/"])
thehill.com##.region-front-magazine-bottom
thehill.com##a[href^="/opinion/"]
! To browse more easily through AdGuard Filters' and EasyList's issue trackers
github.com#?#.js-issue-row:-abp-contains(N: AdGuard for iOS)
github.com#?#.js-issue-row:-abp-contains(N: AdGuard for Safari)
github.com#?#.js-issue-row:-abp-contains(A: In progress)
github.com#?#.js-issue-row:-abp-contains(A: Resolved)
github.com#?#.js-issue-row:-abp-contains(T: Annoyance)
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/.ru($|/)/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/.ua($|/)/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/.by($|/)/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/.kz($|/)/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/.tr($|/)/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/.ist($|/)/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/.istanbul($|/)/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/stfly.me($|/)/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(turk))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(.xn--p1ai))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(/[а-яА-Я]/))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(haber))
github.com#?#.js-issue-row:-abp-has(a[href*="/AdguardFilters/"]:-abp-contains(yandex))
github.com#?#.js-issue-row:-abp-has(a[href*="/easylist/"]:-abp-contains(/cookie/i))
github.com#?#.js-issue-row:-abp-has(a[href*="/easylist/"]:-abp-contains(/annoyance/i))
github.com#?#.js-issue-row:-abp-has(a[href*="/easylist/"]:-abp-contains(Privacy))
github.com#?#.js-issue-row:-abp-has(a[href*="/easylist/"]:-abp-contains(/track/i))
domaintyper.com#?#.rankTable tr:-abp-contains(bank)
domaintyper.com#?#.rankTable tr:-abp-contains(kommune)
domaintyper.com#?#.rankTable tr:-abp-contains(pasient)
domaintyper.com#?#.rankTable tr:-abp-contains(fylke)
domaintyper.com#?#.rankTable tr:-abp-contains(google)
domaintyper.com#?#.rankTable tr:-abp-contains(movie):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(film):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(stream):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(anime):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(hd):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(torrent):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(series):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(watch):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(flix):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(clip):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(vip):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-contains(video):-abp-contains(.is)
domaintyper.com#?#.rankTable tr:-abp-has(td:-abp-contains(/^ui/))
domaintyper.com#?#.rankTable tr:-abp-has(td:-abp-contains(/^hi/))
! Disney+ was a mistake, even when considering I got it as a free pack-in with Kingdom Hearts III on EGS
disneyplus.com#?#.slick-slide:-abp-has(a[href*=loki])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=avengers])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=winter-soldier])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=camp-rock])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=marvel])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=bobs-burgers])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=frustrerte-fruer])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=ramona-og-beezus])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=z-o-m-b-i-e-s])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=descendants])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=lykke-til-charlie])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=waverly])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=twitches])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=bride])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=love])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=kj-c3-a6rlighet])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=nativity])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=miraklet])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=dog])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=valp])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=chihuahua])
disneyplus.com#?#.slick-slide:-abp-has(a[href*="7daDvpFdBXPs"])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=bryllup])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=-fe-eventyr])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=den-utrolige-reisen])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=modern-family])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=mandalorian])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=wandavision])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=married])
disneyplus.com#?#.slick-slide:-abp-has(a[href*=romeo])
! Workaround while testing for Chrome freezes (Specifically to see if "Google Hit Hider by Domain" can remain turned off)
!#if !adguard
!#if !env_mobile
google.*##.g,div[data-ow]:has(a[href*="deviantart.com"])
google.*##.g,div[data-ow]:has(a[href*="latexstories.net"])
google.*##.g,div[data-ow]:has(a[href*="theverge.com"])
google.*##.g,div[data-ow]:has(a[href*="palemoon.org"])
google.*##.g,div[data-ow]:has(a[href*="tiktokcdn.com"])
google.*##.g,div[data-ow]:has(a[href*="tiktokv.com"])
google.*##.g,div[data-ow]:has(a[href*="tiktok.com"])
google.*##.g,div[data-ow]:has(a[href*="byteoversea.com"])
google.*##.g,div[data-ow]:has(a[href*="resetera.com"])
google.*##.g,div[data-ow]:has(a[href*="funtasiadaily.com"])
google.*##.g,div[data-ow]:has(a[href*="filly.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="fillywiki.com"])
google.*##.g,div[data-ow]:has(a[href*="fillychan.com"])
google.*##.g,div[data-ow]:has(a[href*="answers.microsoft.com"])
google.*##.g,div[data-ow]:has(a[href*="gameflip.com"])
google.*##.g,div[data-ow]:has(a[href*="cjs-cdkeys.com"])
google.*##.g,div[data-ow]:has(a[href*="mmoga.com"])
google.*##.g,div[data-ow]:has(a[href*="mygiftcardsupply.com"])
google.*##.g,div[data-ow]:has(a[href*="instant-gaming.com"])
google.*##.g,div[data-ow]:has(a[href*="wingamestore.com"])
google.*##.g,div[data-ow]:has(a[href*="offgamers.com"])
google.*##.g,div[data-ow]:has(a[href*="horse-news.org"])
google.*##.g,div[data-ow]:has(a[href*="equestriadaily.com"])
google.*##.g,div[data-ow]:has(a[href*="derpibooru.org"])
google.*##.g,div[data-ow]:has(a[href*="fimfiction.net"])
google.*##.g,div[data-ow]:has(a[href*="mlpforums.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="derpynews.com"])
google.*##.g,div[data-ow]:has(a[href*="ponychan.net"])
google.*##.g,div[data-ow]:has(a[href*="fluffybooru.org"])
google.*##.g,div[data-ow]:has(a[href*="poniloader.com"])
google.*##.g,div[data-ow]:has(a[href*="everypony.ru"])
google.*##.g,div[data-ow]:has(a[href*="bronies.cz"])
google.*##.g,div[data-ow]:has(a[href*="mlp.one"])
google.*##.g,div[data-ow]:has(a[href*="clop.booru.org"])
google.*##.g,div[data-ow]:has(a[href*="mlpvector.club"])
google.*##.g,div[data-ow]:has(a[href*="ponysfm.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp-gameloft.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="bronies.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="my-little-pony-w-reiner-and-bertholdt.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp.reactor.cc"])
google.*##.g,div[data-ow]:has(a[href*="askprincesscelestia.com"])
google.*##.g,div[data-ow]:has(a[href*="pbooru.com"])
google.*##.g,div[data-ow]:has(a[href*="bronibooru.com"])
google.*##.g,div[data-ow]:has(a[href*="mlpfanart.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="canterlot.com"])
google.*##.g,div[data-ow]:has(a[href*="horsefucker.org"])
google.*##.g,div[data-ow]:has(a[href*="anonpone.com"])
google.*##.g,div[data-ow]:has(a[href*="trixiebooru.org"])
google.*##.g,div[data-ow]:has(a[href*="mlpol.net"])
google.*##.g,div[data-ow]:has(a[href*="lolnoc.com"])
google.*##.g,div[data-ow]:has(a[href*="twitterponies.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="roleplayingismagic.com"])
google.*##.g,div[data-ow]:has(a[href*="tabletop-friendship.tumblr.com"])
google.*##.g,div[data-ow]:has(a[href*="ponyfinder-age-of-adventure.obsidianportal.com"])
google.*##.g,div[data-ow]:has(a[href*="bronyshow.com"])
google.*##.g,div[data-ow]:has(a[href*="equestria.social"])
google.*##.g,div[data-ow]:has(a[href*="pone.social"])
google.*##.g,div[data-ow]:has(a[href*="rainbowdash.net"])
google.*##.g,div[data-ow]:has(a[href*="ponylatino.com"])
google.*##.g,div[data-ow]:has(a[href*="gardensofequestria.com"])
google.*##.g,div[data-ow]:has(a[href*="twibooru.org"])
google.*##.g,div[data-ow]:has(a[href*="manebooru.art"])
google.*##.g,div[data-ow]:has(a[href*="ponerpics.com"])
google.*##.g,div[data-ow]:has(a[href*="bronies.de"])
google.*##.g,div[data-ow]:has(a[href*="ponybooru.org"])
google.*##.g,div[data-ow]:has(a[href*="lumineko.com"])
google.*##.g,div[data-ow]:has(a[href*="equestria.tv"])
google.*##.g,div[data-ow]:has(a[href*="poniverse.net"])
google.*##.g,div[data-ow]:has(a[href*="pony.fm"])
google.*##.g,div[data-ow]:has(a[href*="poniarcade.com"])
google.*##.g,div[data-ow]:has(a[href*="ponyvillelive.com"])
google.*##.g,div[data-ow]:has(a[href*="canterlotavenue.com"])
google.*##.g,div[data-ow]:has(a[href*="ponyroleplay.com"])
google.*##.g,div[data-ow]:has(a[href*="galleryofgoodwill.com"])
google.*##.g,div[data-ow]:has(a[href*="galleryofgoodwill.net"])
google.*##.g,div[data-ow]:has(a[href*="galleryofgoodwill.org"])
google.*##.g,div[data-ow]:has(a[href*="4evr.horse"])
google.*##.g,div[data-ow]:has(a[href*="brony.house"])
google.*##.g,div[data-ow]:has(a[href*="cutemares.com"])
google.*##.g,div[data-ow]:has(a[href*="donutsteel.pl"])
google.*##.g,div[data-ow]:has(a[href*="donutsteel.us"])
google.*##.g,div[data-ow]:has(a[href*="golly.horse"])
google.*##.g,div[data-ow]:has(a[href*="horse.best"])
google.*##.g,div[data-ow]:has(a[href*="iwtcits.com"])
google.*##.g,div[data-ow]:has(a[href*="mlpcon.com"])
google.*##.g,div[data-ow]:has(a[href*="mlpcon.online"])
google.*##.g,div[data-ow]:has(a[href*="pfc.moe"])
google.*##.g,div[data-ow]:has(a[href*="plushie.horse"])
google.*##.g,div[data-ow]:has(a[href*="pone.io"])
google.*##.g,div[data-ow]:has(a[href*="poner.pics"])
google.*##.g,div[data-ow]:has(a[href*="ponison.us"])
google.*##.g,div[data-ow]:has(a[href*="ponisonus.com"])
google.*##.g,div[data-ow]:has(a[href*="pony.lol"])
google.*##.g,div[data-ow]:has(a[href*="smutty.horse"])
google.*##.g,div[data-ow]:has(a[href*="twi.fan"])
google.*##.g,div[data-ow]:has(a[href*="twilightsparkle2020.com"])
google.*##.g,div[data-ow]:has(a[href*="worst.horse"])
google.*##.g,div[data-ow]:has(a[href*="mlponies.com"])
google.*##.g,div[data-ow]:has(a[href*="lunaloves.us"])
google.*##.g,div[data-ow]:has(a[href*="ponyverse.org"])
google.*##.g,div[data-ow]:has(a[href*="ponyprintproject.org"])
google.*##.g,div[data-ow]:has(a[href*="canterlotcomics.com"])
google.*##.g,div[data-ow]:has(a[href*="derpiboo.ru"])
google.*##.g,div[data-ow]:has(a[href*="mylittlebrony.com"])
google.*##.g,div[data-ow]:has(a[href*="drwolf001.tumblr.com"])
google.*##.g,div[data-ow]:has(a[href*="leponeyblanc.fr"])
google.*##.g,div[data-ow]:has(a[href*="needforponies.fr"])
google.*##.g,div[data-ow]:has(a[href*="mylittleequestria.forumactif.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp-france.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp.quebec"])
google.*##.g,div[data-ow]:has(a[href*="bronies.fr"])
google.*##.g,div[data-ow]:has(a[href*="galacon.eu"])
google.*##.g,div[data-ow]:has(a[href*="sethisto.tumblr.com"])
google.*##.g,div[data-ow]:has(a[href*="fge.com.pl"])
google.*##.g,div[data-ow]:has(a[href*="equestriacn.com"])
google.*##.g,div[data-ow]:has(a[href*="ponerpics.org"])
google.*##.g,div[data-ow]:has(a[href*="derpibooru-org.pornproxysite.com"])
google.*##.g,div[data-ow]:has(a[href*="bronyhub.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp-party.com"])
google.*##.g,div[data-ow]:has(a[href*="horse-news.org"])
google.*##.g,div[data-ow]:has(a[href*="equestriadaily.com"])
google.*##.g,div[data-ow]:has(a[href*="derpibooru.org"])
google.*##.g,div[data-ow]:has(a[href*="fimfiction.net"])
google.*##.g,div[data-ow]:has(a[href*="mlpforums.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="derpynews.com"])
google.*##.g,div[data-ow]:has(a[href*="ponychan.net"])
google.*##.g,div[data-ow]:has(a[href*="fluffybooru.org"])
google.*##.g,div[data-ow]:has(a[href*="poniloader.com"])
google.*##.g,div[data-ow]:has(a[href*="everypony.ru"])
google.*##.g,div[data-ow]:has(a[href*="bronies.cz"])
google.*##.g,div[data-ow]:has(a[href*="mlp.one"])
google.*##.g,div[data-ow]:has(a[href*="clop.booru.org"])
google.*##.g,div[data-ow]:has(a[href*="mlpvector.club"])
google.*##.g,div[data-ow]:has(a[href*="ponysfm.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp-gameloft.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="bronies.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="my-little-pony-w-reiner-and-bertholdt.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp.reactor.cc"])
google.*##.g,div[data-ow]:has(a[href*="askprincesscelestia.com"])
google.*##.g,div[data-ow]:has(a[href*="pbooru.com"])
google.*##.g,div[data-ow]:has(a[href*="bronibooru.com"])
google.*##.g,div[data-ow]:has(a[href*="mlpfanart.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="canterlot.com"])
google.*##.g,div[data-ow]:has(a[href*="horsefucker.org"])
google.*##.g,div[data-ow]:has(a[href*="anonpone.com"])
google.*##.g,div[data-ow]:has(a[href*="trixiebooru.org"])
google.*##.g,div[data-ow]:has(a[href*="mlpol.net"])
google.*##.g,div[data-ow]:has(a[href*="lolnoc.com"])
google.*##.g,div[data-ow]:has(a[href*="twitterponies.fandom.com"])
google.*##.g,div[data-ow]:has(a[href*="roleplayingismagic.com"])
google.*##.g,div[data-ow]:has(a[href*="tabletop-friendship.tumblr.com"])
google.*##.g,div[data-ow]:has(a[href*="ponyfinder-age-of-adventure.obsidianportal.com"])
google.*##.g,div[data-ow]:has(a[href*="bronyshow.com"])
google.*##.g,div[data-ow]:has(a[href*="equestria.social"])
google.*##.g,div[data-ow]:has(a[href*="pone.social"])
google.*##.g,div[data-ow]:has(a[href*="rainbowdash.net"])
google.*##.g,div[data-ow]:has(a[href*="ponylatino.com"])
google.*##.g,div[data-ow]:has(a[href*="gardensofequestria.com"])
google.*##.g,div[data-ow]:has(a[href*="twibooru.org"])
google.*##.g,div[data-ow]:has(a[href*="manebooru.art"])
google.*##.g,div[data-ow]:has(a[href*="ponerpics.com"])
google.*##.g,div[data-ow]:has(a[href*="bronies.de"])
google.*##.g,div[data-ow]:has(a[href*="ponybooru.org"])
google.*##.g,div[data-ow]:has(a[href*="lumineko.com"])
google.*##.g,div[data-ow]:has(a[href*="equestria.tv"])
google.*##.g,div[data-ow]:has(a[href*="poniverse.net"])
google.*##.g,div[data-ow]:has(a[href*="pony.fm"])
google.*##.g,div[data-ow]:has(a[href*="poniarcade.com"])
google.*##.g,div[data-ow]:has(a[href*="ponyvillelive.com"])
google.*##.g,div[data-ow]:has(a[href*="canterlotavenue.com"])
google.*##.g,div[data-ow]:has(a[href*="ponyroleplay.com"])
google.*##.g,div[data-ow]:has(a[href*="galleryofgoodwill.com"])
google.*##.g,div[data-ow]:has(a[href*="galleryofgoodwill.net"])
google.*##.g,div[data-ow]:has(a[href*="galleryofgoodwill.org"])
google.*##.g,div[data-ow]:has(a[href*="4evr.horse"])
google.*##.g,div[data-ow]:has(a[href*="brony.house"])
google.*##.g,div[data-ow]:has(a[href*="cutemares.com"])
google.*##.g,div[data-ow]:has(a[href*="donutsteel.pl"])
google.*##.g,div[data-ow]:has(a[href*="donutsteel.us"])
google.*##.g,div[data-ow]:has(a[href*="golly.horse"])
google.*##.g,div[data-ow]:has(a[href*="horse.best"])
google.*##.g,div[data-ow]:has(a[href*="iwtcits.com"])
google.*##.g,div[data-ow]:has(a[href*="mlpcon.com"])
google.*##.g,div[data-ow]:has(a[href*="mlpcon.online"])
google.*##.g,div[data-ow]:has(a[href*="pfc.moe"])
google.*##.g,div[data-ow]:has(a[href*="plushie.horse"])
google.*##.g,div[data-ow]:has(a[href*="pone.io"])
google.*##.g,div[data-ow]:has(a[href*="poner.pics"])
google.*##.g,div[data-ow]:has(a[href*="ponison.us"])
google.*##.g,div[data-ow]:has(a[href*="ponisonus.com"])
google.*##.g,div[data-ow]:has(a[href*="pony.lol"])
google.*##.g,div[data-ow]:has(a[href*="smutty.horse"])
google.*##.g,div[data-ow]:has(a[href*="twi.fan"])
google.*##.g,div[data-ow]:has(a[href*="twilightsparkle2020.com"])
google.*##.g,div[data-ow]:has(a[href*="worst.horse"])
google.*##.g,div[data-ow]:has(a[href*="mlponies.com"])
google.*##.g,div[data-ow]:has(a[href*="lunaloves.us"])
google.*##.g,div[data-ow]:has(a[href*="ponyverse.org"])
google.*##.g,div[data-ow]:has(a[href*="ponyprintproject.org"])
google.*##.g,div[data-ow]:has(a[href*="canterlotcomics.com"])
google.*##.g,div[data-ow]:has(a[href*="derpiboo.ru"])
google.*##.g,div[data-ow]:has(a[href*="mylittlebrony.com"])
google.*##.g,div[data-ow]:has(a[href*="drwolf001.tumblr.com"])
google.*##.g,div[data-ow]:has(a[href*="leponeyblanc.fr"])
google.*##.g,div[data-ow]:has(a[href*="needforponies.fr"])
google.*##.g,div[data-ow]:has(a[href*="mylittleequestria.forumactif.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp-france.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp.quebec"])
google.*##.g,div[data-ow]:has(a[href*="bronies.fr"])
google.*##.g,div[data-ow]:has(a[href*="galacon.eu"])
google.*##.g,div[data-ow]:has(a[href*="sethisto.tumblr.com"])
google.*##.g,div[data-ow]:has(a[href*="fge.com.pl"])
google.*##.g,div[data-ow]:has(a[href*="equestriacn.com"])
google.*##.g,div[data-ow]:has(a[href*="ponerpics.org"])
google.*##.g,div[data-ow]:has(a[href*="derpibooru-org.pornproxysite.com"])
google.*##.g,div[data-ow]:has(a[href*="bronyhub.com"])
google.*##.g,div[data-ow]:has(a[href*="mlp-party.com"])
google.*##.g,div[data-ow]:has(a[href*="eetgroup.com"])
google.*##.g,div[data-ow]:has(a[href*="butikk.protektit.no"])
google.*##.g,div[data-ow]:has(a[href*="butikk-vestfold.visolit.no"])
google.*##.g,div[data-ow]:has(a[href*="cbk.no"])
google.*##.g,div[data-ow]:has(a[href*="databutikk.borgsvakstrom.no"])
google.*##.g,div[data-ow]:has(a[href*="datarekvisita.no"])
google.*##.g,div[data-ow]:has(a[href*="ecitshop.no"])
google.*##.g,div[data-ow]:has(a[href*="eshop.abacus-it.no"])
google.*##.g,div[data-ow]:has(a[href*="eshop.advania.no"])
google.*##.g,div[data-ow]:has(a[href*="eurotechcomputers.webmercs.com"])
google.*##.g,div[data-ow]:has(a[href*="fanadata.no"])
google.*##.g,div[data-ow]:has(a[href*="mjosdata.no"])
google.*##.g,div[data-ow]:has(a[href*="nettbutikk.systemitech.no"])
google.*##.g,div[data-ow]:has(a[href*="nettbutikk.teleconsulting.no"])
google.*##.g,div[data-ow]:has(a[href*="netthandel.centpro.no"])
google.*##.g,div[data-ow]:has(a[href*="netthandel.fagdata.no"])
google.*##.g,div[data-ow]:has(a[href*="netthandel.r2it.no"])
google.*##.g,div[data-ow]:has(a[href*="powerit.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.blinq.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.cas.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.entry.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.gda.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.hatteland.com"])
google.*##.g,div[data-ow]:has(a[href*="shop.ikomm.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.iktpartner24.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.inv.as"])
google.*##.g,div[data-ow]:has(a[href*="shop.isanorge.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.itello.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.ldp.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.lit.no"])
google.*##.g,div[data-ow]:has(a[href*="tedako.webmercs.com"])
google.*##.g,div[data-ow]:has(a[href*="wago.com"])
google.*##.g,div[data-ow]:has(a[href*="webshop.adcom.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.braathe.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.cegal.com"])
google.*##.g,div[data-ow]:has(a[href*="webshop.coreservices.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.elektroskandia.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.eltele.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.funn.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.garnesdata.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.intility.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.itsystemer.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.marcello.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.snorredata.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.telecomputing.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.teneodata.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.visolit.no"])
google.*##.g,div[data-ow]:has(a[href*="shop.lan-x.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.vikseas.no"])
google.*##.g,div[data-ow]:has(a[href*="nettbutikk.ad.no"])
google.*##.g,div[data-ow]:has(a[href*="webshop.columbi.no"])
google.*##.g,div[data-ow]:has(a[href*="tromsdata.no"])
google.*##.g,div[data-ow]:has(a[href*="nettbutikk.itet.no"])
google.*##.g,div[data-ow]:has(a[href*="retailerno94.netset.eu"])
google.*##.g,div[data-ow]:has(a[href*="retailerno96.netset.eu"])
google.*##.g,div[data-ow]:has(a[href*="eshop.comm2ig.dk"])
google.*##.g,div[data-ow]:has(a[href*="eshop.edgemo.com"])
google.*##.g,div[data-ow]:has(a[href*="shop.aktivit.se"])
google.*##.g,div[data-ow]:has(a[href*="shop.jsc.se"])
google.*##.g,div[data-ow]:has(a[href*="webshop.britt.se"])
google.*##.g,div[data-ow]:has(a[href*="webshop.cygate.se"])
google.*##.g,div[data-ow]:has(a[href*="webshop.infra.se"])
google.*##.g,div[data-ow]:has(a[href*="webshop.teleservice.net"])
google.*##.g,div[data-ow]:has(a[href*="webshop.visolit.se"])
google.*##.g,div[data-ow]:has(a[href*="b2bshop.fi"])
google.*##.g,div[data-ow]:has(a[href*="businessit.fi"])
google.*##.g,div[data-ow]:has(a[href*="fiksuit.fi"])
google.*##.g,div[data-ow]:has(a[href*="futureport.fi"])
google.*##.g,div[data-ow]:has(a[href*="kauppa.tietokeskus.com"])
google.*##.g,div[data-ow]:has(a[href*="shop.dataprof.fi"])
google.*##.g,div[data-ow]:has(a[href*="verkkokauppa.printcom.fi"])
google.*##.g,div[data-ow]:has(a[href*="verkkokauppa.xaasit.fi"])
google.*##.g,div[data-ow]:has(a[href*="webshop.wisdomic.fi"])
google.*##.g,div[data-ow]:has(a[href*="webshop.atlantiksysteme.de"])
google.*##.g,div[data-ow]:has(a[href*="webshop.unielektro.de"])
google.*##.g,div[data-ow]:has(a[href*="eshop.cebeo.be"])
google.*##.g,div[data-ow]:has(a[href*="shop.comby.gl"])
google.*##.g,div[data-ow]:has(a[href*="dailymail.co.uk"])
google.*##.g,div[data-ow]:has(a[href*="thesun.co.uk"])
google.*##.g,div[data-ow]:has(a[href*="the-sun.com"])
google.*##.g,div[data-ow]:has(a[href*="express.co.uk"])
google.*##.g,div[data-ow]:has(a[href*="mirror.co.uk"])
google.*##.g,div[data-ow]:has(a[href*="telegraph.co.uk"])
google.*##.g,div[data-ow]:has(a[href*="washingtontimes.com"])
google.*##.g,div[data-ow]:has(a[href*="zenith.news"])
google.*##.g,div[data-ow]:has(a[href*="theconfirmationfiles.com"])
google.*##.g,div[data-ow]:has(a[href*="noovell.com"])
google.*##.g,div[data-ow]:has(a[href*="mavenroundtable.io"])
google.*##.g,div[data-ow]:has(a[href*="commonsenseevaluation.com"])
google.*##.g,div[data-ow]:has(a[href*="rumble.com"])
google.*##.g,div[data-ow]:has(a[href*="realclearpolitics.com"])
google.*##.g,div[data-ow]:has(a[href*="realclearinvestigations.com"])
google.*##.g,div[data-ow]:has(a[href*="fark.com"])
google.*##.g,div[data-ow]:has(a[href*="foxnews.com"])
google.*##.g,div[data-ow]:has(a[href*="foxbusiness.com"])
google.*##.g,div[data-ow]:has(a[href*="breitbart.com"])
google.*##.g,div[data-ow]:has(a[href*="oann.com"])
google.*##.g,div[data-ow]:has(a[href*="washingtonexaminer.com"])
google.*##.g,div[data-ow]:has(a[href*="infowars.com"])
google.*##.g,div[data-ow]:has(a[href*="brasspills.com"])
google.*##.g,div[data-ow]:has(a[href*="rightwingnews.com"])
google.*##.g,div[data-ow]:has(a[href*="dailywire.com"])
google.*##.g,div[data-ow]:has(a[href*="redstate.com"])
google.*##.g,div[data-ow]:has(a[href*="conservativemedia.com"])
google.*##.g,div[data-ow]:has(a[href*="freebeacon.com"])
google.*##.g,div[data-ow]:has(a[href*="bigleaguepolitics.com"])
google.*##.g,div[data-ow]:has(a[href*="libertyhub.com"])
google.*##.g,div[data-ow]:has(a[href*="reverereport.com"])
google.*##.g,div[data-ow]:has(a[href*="conservativefiringline.com"])
google.*##.g,div[data-ow]:has(a[href*="thefederalist.com"])
google.*##.g,div[data-ow]:has(a[href*="returnofkings.com"])
google.*##.g,div[data-ow]:has(a[href*="dailycaller.com"])
google.*##.g,div[data-ow]:has(a[href*="americanthinker.com"])
google.*##.g,div[data-ow]:has(a[href*="judicialwatch.org"])
google.*##.g,div[data-ow]:has(a[href*="yourvoiceamerica.tv"])
google.*##.g,div[data-ow]:has(a[href*="prageru.com"])
google.*##.g,div[data-ow]:has(a[href*="thegatewaypundit.com"])
google.*##.g,div[data-ow]:has(a[href*="wnd.com"])
google.*##.g,div[data-ow]:has(a[href*="cnsnews.com"])
google.*##.g,div[data-ow]:has(a[href*="incels.co"])
google.*##.g,div[data-ow]:has(a[href*="conservapedia.com"])
google.*##.g,div[data-ow]:has(a[href*="newsmaxtv.com"])
google.*##.g,div[data-ow]:has(a[href*="donaldjtrump.com"])
google.*##.g,div[data-ow]:has(a[href*="rushlimbaugh.com"])
google.*##.g,div[data-ow]:has(a[href*="tpusa.com"])
google.*##.g,div[data-ow]:has(a[href*="yeniakit.com.tr"])
google.*##.g,div[data-ow]:has(a[href*="jihadwatch.org"])
google.*##.g,div[data-ow]:has(a[href*="urbandictionary.com"])
google.*##.g,div[data-ow]:has(a[href*="ifunny.co"])
google.*##.g,div[data-ow]:has(a[href*="encyclopediadramatica.rs"])
google.*##.g,div[data-ow]:has(a[href*="fftodayforums.com"])
google.*##.g,div[data-ow]:has(a[href*="adoxa.info"])
google.*##.g,div[data-ow]:has(a[href*="australian-news.net"])
google.*##.g,div[data-ow]:has(a[href*="friatider.se"])
google.*##.g,div[data-ow]:has(a[href*="samnytt.se"])
google.*##.g,div[data-ow]:has(a[href*="uvell.se"])
google.*##.g,div[data-ow]:has(a[href*="standpointmag.co.uk"])
google.*##.g,div[data-ow]:has(a[href*="vinterland.org"])
google.*##.g,div[data-ow]:has(a[href*="19vierundachtzig.com"])
google.*##.g,div[data-ow]:has(a[href*="canadafreepress.com"])
google.*##.g,div[data-ow]:has(a[href*="indianlibertyreport.com"])
google.*##.g,div[data-ow]:has(a[href*="lifesitenews.com"])
google.*##.g,div[data-ow]:has(a[href*="resett.no"])
google.*##.g,div[data-ow]:has(a[href*="norgesavisen.no"])
google.*##.g,div[data-ow]:has(a[href*="ektenyheter.no"])
google.*##.g,div[data-ow]:has(a[href*="alternativ-media.com"])
google.*##.g,div[data-ow]:has(a[href*="nyttnorge.com"])
google.*##.g,div[data-ow]:has(a[href*="sian.no"])
google.*##.g,div[data-ow]:has(a[href*="document.no"])
google.*##.g,div[data-ow]:has(a[href*="stateofglobe.no"])
google.*##.g,div[data-ow]:has(a[href*="rights.no"])
google.*##.g,div[data-ow]:has(a[href*="politainment.no"])
google.*##.g,div[data-ow]:has(a[href*="hemali.no"])
google.*##.g,div[data-ow]:has(a[href*="politisksnusk.com"])
google.*##.g,div[data-ow]:has(a[href*="viktigviten.no"])
google.*##.g,div[data-ow]:has(a[href*="denkorteavis.dk"])
google.*##.g,div[data-ow]:has(a[href*="snaphanen.dk"])
google.*##.g,div[data-ow]:has(a[href*="freespeechblog.ch"])
google.*##.g,div[data-ow]:has(a[href*="uriasposten.net"])
google.*##.g,div[data-ow]:has(a[href*="angantyr.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="annalyttiger.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="borgerligbums.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="modersmaalet.dk"])
google.*##.g,div[data-ow]:has(a[href*="danskkultur-debat.dk"])
google.*##.g,div[data-ow]:has(a[href*="bombeienturban.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="eticha.dk"])
google.*##.g,div[data-ow]:has(a[href*="thefreedomlovingamigos.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="gudernesragnarok.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="hodja.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="islamificering.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="jarlcordua.dk"])
google.*##.g,div[data-ow]:has(a[href*="junikredsen.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="konflikten.dk"])
google.*##.g,div[data-ow]:has(a[href*="konservativkrabask.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="konservativreaktion.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="xn--trning-bya.dk"])
google.*##.g,div[data-ow]:has(a[href*="kulturkloeften.dk"])
google.*##.g,div[data-ow]:has(a[href*="laenkehunden.dk"])
google.*##.g,div[data-ow]:has(a[href*="monokultur.dk"])
google.*##.g,div[data-ow]:has(a[href*="nomosdk.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="analysator.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="omnial.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="punditokraterne.dk"])
google.*##.g,div[data-ow]:has(a[href*="pind.nu"])
google.*##.g,div[data-ow]:has(a[href*="synopsis-olsen.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="ullanoertoftthomsen.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="altanen.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="fightthepowerwithfreespeech.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="balletmagnifique.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="identitaer.dk"])
google.*##.g,div[data-ow]:has(a[href*="ditoverblik.dk"])
google.*##.g,div[data-ow]:has(a[href*="24nyt.dk"])
google.*##.g,div[data-ow]:has(a[href*="europenews.dk"])
google.*##.g,div[data-ow]:has(a[href*="100percentfedup.com"])
google.*##.g,div[data-ow]:has(a[href*="10news.one"])
google.*##.g,div[data-ow]:has(a[href*="3ccorp.net"])
google.*##.g,div[data-ow]:has(a[href*="activistpost.com"])
google.*##.g,div[data-ow]:has(a[href*="ajuanews.com"])
google.*##.g,div[data-ow]:has(a[href*="allnewspipeline.com"])
google.*##.g,div[data-ow]:has(a[href*="alphanewsmn.com"])
google.*##.g,div[data-ow]:has(a[href*="altright.com"])
google.*##.g,div[data-ow]:has(a[href*="americanjournalreview.com"])
google.*##.g,div[data-ow]:has(a[href*="americanpatriotdaily.com"])
google.*##.g,div[data-ow]:has(a[href*="americanpravdabook.com"])
google.*##.g,div[data-ow]:has(a[href*="americansarepissed.com"])
google.*##.g,div[data-ow]:has(a[href*="americansfortruth.com"])
google.*##.g,div[data-ow]:has(a[href*="americantruthtoday.com"])
google.*##.g,div[data-ow]:has(a[href*="americasfreedomfighters.com"])
google.*##.g,div[data-ow]:has(a[href*="americasnewssource.com"])
google.*##.g,div[data-ow]:has(a[href*="amren.com"])
google.*##.g,div[data-ow]:has(a[href*="analyzingamerica.org"])
google.*##.g,div[data-ow]:has(a[href*="backroombuzz.com"])
google.*##.g,div[data-ow]:has(a[href*="bannedinformation.com"])
google.*##.g,div[data-ow]:has(a[href*="barenakedislam.com"])
google.*##.g,div[data-ow]:has(a[href*="bb4sp.com"])
google.*##.g,div[data-ow]:has(a[href*="bitchute.com"])
google.*##.g,div[data-ow]:has(a[href*="bizpacreview.com"])
google.*##.g,div[data-ow]:has(a[href*="blackeyepolitics.com"])
google.*##.g,div[data-ow]:has(a[href*="bluntforcetruth.com"])
google.*##.g,div[data-ow]:has(a[href*="breakingfirst.com"])
google.*##.g,div[data-ow]:has(a[href*="bulletsfirst.net"])
google.*##.g,div[data-ow]:has(a[href*="censored.today"])
google.*##.g,div[data-ow]:has(a[href*="cernovich.com"])
google.*##.g,div[data-ow]:has(a[href*="chicksonright.com"])
google.*##.g,div[data-ow]:has(a[href*="churchmilitant.com"])
google.*##.g,div[data-ow]:has(a[href*="city-journal.org"])
google.*##.g,div[data-ow]:has(a[href*="clashdaily.com"])
google.*##.g,div[data-ow]:has(a[href*="comicallyincorrect.com"])
google.*##.g,div[data-ow]:has(a[href*="conservativeangle.com"])
google.*##.g,div[data-ow]:has(a[href*="dailypresser.com"])
google.*##.g,div[data-ow]:has(a[href*="dailysurge.com"])
google.*##.g,div[data-ow]:has(a[href*="dailyworldupdate.us"])
google.*##.g,div[data-ow]:has(a[href*="dcclothesline.com"])
google.*##.g,div[data-ow]:has(a[href*="dcdirtylaundry.com"])
google.*##.g,div[data-ow]:has(a[href*="deneenborelli.com"])
google.*##.g,div[data-ow]:has(a[href*="discoverthenetworks.org"])
google.*##.g,div[data-ow]:has(a[href*="donald.win"])
google.*##.g,div[data-ow]:has(a[href*="drudgereport.com"])
google.*##.g,div[data-ow]:has(a[href*="envirowatchrangitikei.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="evil.news"])
google.*##.g,div[data-ow]:has(a[href*="explainlife.com"])
google.*##.g,div[data-ow]:has(a[href*="eyeopening.info"])
google.*##.g,div[data-ow]:has(a[href*="faithit.com"])
google.*##.g,div[data-ow]:has(a[href*="firstinfreedomdaily.com"])
google.*##.g,div[data-ow]:has(a[href*="fortherightnews.com"])
google.*##.g,div[data-ow]:has(a[href*="freedomoutpost.com"])
google.*##.g,div[data-ow]:has(a[href*="freedomworks.org"])
google.*##.g,div[data-ow]:has(a[href*="fukushimawatch.com"])
google.*##.g,div[data-ow]:has(a[href*="gellerreport.com"])
google.*##.g,div[data-ow]:has(a[href*="godfatherpolitics.com"])
google.*##.g,div[data-ow]:has(a[href*="goodgopher.com"])
google.*##.g,div[data-ow]:has(a[href*="govtslaves.info"])
google.*##.g,div[data-ow]:has(a[href*="granitegrok.com"])
google.*##.g,div[data-ow]:has(a[href*="grassrootsliberty.com"])
google.*##.g,div[data-ow]:has(a[href*="greatamericanpolitics.com"])
google.*##.g,div[data-ow]:has(a[href*="greatamericanrepublic.com"])
google.*##.g,div[data-ow]:has(a[href*="hardcoreconservatives.com"])
google.*##.g,div[data-ow]:has(a[href*="hispolitica.com"])
google.*##.g,div[data-ow]:has(a[href*="humanevents.com"])
google.*##.g,div[data-ow]:has(a[href*="huntingfishing.com"])
google.*##.g,div[data-ow]:has(a[href*="illicitinfo.com"])
google.*##.g,div[data-ow]:has(a[href*="infogalactic.com"])
google.*##.g,div[data-ow]:has(a[href*="informationliberation.com"])
google.*##.g,div[data-ow]:has(a[href*="intellihub.com"])
google.*##.g,div[data-ow]:has(a[href*="ipatriot.com"])
google.*##.g,div[data-ow]:has(a[href*="joeforamerica.com"])
google.*##.g,div[data-ow]:has(a[href*="kekpe.pe"])
google.*##.g,div[data-ow]:has(a[href*="libertyblitzkrieg.com"])
google.*##.g,div[data-ow]:has(a[href*="libertyunyielding.com"])
google.*##.g,div[data-ow]:has(a[href*="lidblog.com"])
google.*##.g,div[data-ow]:has(a[href*="louderwithcrowder.com"])
google.*##.g,div[data-ow]:has(a[href*="madworldnews.com"])
google.*##.g,div[data-ow]:has(a[href*="maga.host"])
google.*##.g,div[data-ow]:has(a[href*="magafun.com"])
google.*##.g,div[data-ow]:has(a[href*="marypatriotnews.com"])
google.*##.g,div[data-ow]:has(a[href*="menrec.com"])
google.*##.g,div[data-ow]:has(a[href*="momzinga.com"])
google.*##.g,div[data-ow]:has(a[href*="moonbattery.com"])
google.*##.g,div[data-ow]:has(a[href*="mrc.org"])
google.*##.g,div[data-ow]:has(a[href*="myrightamerica.com"])
google.*##.g,div[data-ow]:has(a[href*="nationalfile.com"])
google.*##.g,div[data-ow]:has(a[href*="naturalnews.com"])
google.*##.g,div[data-ow]:has(a[href*="neonnettle.com"])
google.*##.g,div[data-ow]:has(a[href*="newsbusters.org"])
google.*##.g,div[data-ow]:has(a[href*="newspunch.com"])
google.*##.g,div[data-ow]:has(a[href*="newstarget.com"])
google.*##.g,div[data-ow]:has(a[href*="newswars.com"])
google.*##.g,div[data-ow]:has(a[href*="nomorefakenews.com"])
google.*##.g,div[data-ow]:has(a[href*="nutritionalanarchy.com"])
google.*##.g,div[data-ow]:has(a[href*="offgridsurvival.com"])
google.*##.g,div[data-ow]:has(a[href*="oneangrygamer.net"])
google.*##.g,div[data-ow]:has(a[href*="pacificpundit.com"])
google.*##.g,div[data-ow]:has(a[href*="patriotoutdoornews.com"])
google.*##.g,div[data-ow]:has(a[href*="politicalcowboy.com"])
google.*##.g,div[data-ow]:has(a[href*="politicaltracker.com"])
google.*##.g,div[data-ow]:has(a[href*="politichicks.com"])
google.*##.g,div[data-ow]:has(a[href*="pop.org"])
google.*##.g,div[data-ow]:has(a[href*="powderedwigsociety.com"])
google.*##.g,div[data-ow]:has(a[href*="proamericaonly.com"])
google.*##.g,div[data-ow]:has(a[href*="puppetstringnews.com"])
google.*##.g,div[data-ow]:has(a[href*="rairfoundation.com"])
google.*##.g,div[data-ow]:has(a[href*="realitycircuit.com"])
google.*##.g,div[data-ow]:has(a[href*="redinfo.us"])
google.*##.g,div[data-ow]:has(a[href*="redmaryland.com"])
google.*##.g,div[data-ow]:has(a[href*="reedcooper.net"])
google.*##.g,div[data-ow]:has(a[href*="renewamerica.com"])
google.*##.g,div[data-ow]:has(a[href*="rightalerts.com"])
google.*##.g,div[data-ow]:has(a[href*="rightsidenews.com"])
google.*##.g,div[data-ow]:has(a[href*="rightwingtribune.com"])
google.*##.g,div[data-ow]:has(a[href*="secondamendmentdaily.com"])
google.*##.g,div[data-ow]:has(a[href*="shark-tank.com"])
google.*##.g,div[data-ow]:has(a[href*="slimgr.com"])
google.*##.g,div[data-ow]:has(a[href*="sonsoflibertymedia.com"])
google.*##.g,div[data-ow]:has(a[href*="spectator.co.uk"])
google.*##.g,div[data-ow]:has(a[href*="spectator.us"])
google.*##.g,div[data-ow]:has(a[href*="starshipearththebigpicture.com"])
google.*##.g,div[data-ow]:has(a[href*="survivalblog.com"])
google.*##.g,div[data-ow]:has(a[href*="swampdrain.com"])
google.*##.g,div[data-ow]:has(a[href*="teapartygear.com"])
google.*##.g,div[data-ow]:has(a[href*="tenthamendmentcenter.com"])
google.*##.g,div[data-ow]:has(a[href*="tfp.org"])
google.*##.g,div[data-ow]:has(a[href*="thebl.com"])
google.*##.g,div[data-ow]:has(a[href*="theblacksphere.net"])
google.*##.g,div[data-ow]:has(a[href*="theblaze.com"])
google.*##.g,div[data-ow]:has(a[href*="thedailysheeple.com"])
google.*##.g,div[data-ow]:has(a[href*="thedonald.win"])
google.*##.g,div[data-ow]:has(a[href*="theeconomiccollapseblog.com"])
google.*##.g,div[data-ow]:has(a[href*="thehayride.com"])
google.*##.g,div[data-ow]:has(a[href*="theimaginativeconservative.org"])
google.*##.g,div[data-ow]:has(a[href*="thelibertydaily.com"])
google.*##.g,div[data-ow]:has(a[href*="thelibertyeagle.com"])
google.*##.g,div[data-ow]:has(a[href*="themillenniumreport.com"])
google.*##.g,div[data-ow]:has(a[href*="thenewamerican.com"])
google.*##.g,div[data-ow]:has(a[href*="thepoliticalinsider.com"])
google.*##.g,div[data-ow]:has(a[href*="thepolitistick.com"])
google.*##.g,div[data-ow]:has(a[href*="thepostmillenial.com"])
google.*##.g,div[data-ow]:has(a[href*="therightbloggerbastard.blogspot.com"])
google.*##.g,div[data-ow]:has(a[href*="therightstuff.biz"])
google.*##.g,div[data-ow]:has(a[href*="thesaker.is"])
google.*##.g,div[data-ow]:has(a[href*="thesleuthjournal.com"])
google.*##.g,div[data-ow]:has(a[href*="thetrumpet.com"])
google.*##.g,div[data-ow]:has(a[href*="thetrumpmedia.com"])
google.*##.g,div[data-ow]:has(a[href*="thinkamericana.com"])
google.*##.g,div[data-ow]:has(a[href*="timmieblaze.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="toprightnews.com"])
google.*##.g,div[data-ow]:has(a[href*="trueactivist.com"])
google.*##.g,div[data-ow]:has(a[href*="trump.news"])
google.*##.g,div[data-ow]:has(a[href*="trunews.com"])
google.*##.g,div[data-ow]:has(a[href*="truthandaction.org"])
google.*##.g,div[data-ow]:has(a[href*="truthstreammedia.com"])
google.*##.g,div[data-ow]:has(a[href*="truthuncensored.net"])
google.*##.g,div[data-ow]:has(a[href*="truthwiki.org"])
google.*##.g,div[data-ow]:has(a[href*="twitchy.com"])
google.*##.g,div[data-ow]:has(a[href*="unsilencedvoice.com"])
google.*##.g,div[data-ow]:has(a[href*="usa.church"])
google.*##.g,div[data-ow]:has(a[href*="usapubliclife.com"])
google.*##.g,div[data-ow]:has(a[href*="usbacklash.org"])
google.*##.g,div[data-ow]:has(a[href*="uslibertywire.com"])
google.*##.g,div[data-ow]:has(a[href*="ussanews.com"])
google.*##.g,div[data-ow]:has(a[href*="voat.co"])
google.*##.g,div[data-ow]:has(a[href*="wearebiased.com"])
google.*##.g,div[data-ow]:has(a[href*="westernjournal.com"])
google.*##.g,div[data-ow]:has(a[href*="westernjournalism.com"])
google.*##.g,div[data-ow]:has(a[href*="whatfinger.com"])
google.*##.g,div[data-ow]:has(a[href*="whatreallyhappened.com"])
google.*##.g,div[data-ow]:has(a[href*="yesimright.com"])
google.*##.g,div[data-ow]:has(a[href*="zerohedge.com"])
google.*##.g,div[data-ow]:has(a[href*="hangthebankers.com"])
google.*##.g,div[data-ow]:has(a[href*="teapartypatriots.org"])
google.*##.g,div[data-ow]:has(a[href*="exclusivelygames.com"])
google.*##.g,div[data-ow]:has(a[href*="sidalpha.com"])
google.*##.g,div[data-ow]:has(a[href*="wearechange.com"])
google.*##.g,div[data-ow]:has(a[href*="open.tube"])
google.*##.g,div[data-ow]:has(a[href*="grrrgraphics.com"])
google.*##.g,div[data-ow]:has(a[href*="conventionofstates.com"])
google.*##.g,div[data-ow]:has(a[href*="novopress.info"])
google.*##.g,div[data-ow]:has(a[href*="pjmedia.com"])
google.*##.g,div[data-ow]:has(a[href*="altnewsmedia.net"])
google.*##.g,div[data-ow]:has(a[href*="technocracy.news"])
google.*##.g,div[data-ow]:has(a[href*="girlsjustwannahaveguns.com"])
google.*##.g,div[data-ow]:has(a[href*="patriotnationpress.com"])
google.*##.g,div[data-ow]:has(a[href*="rightwing.news"])
google.*##.g,div[data-ow]:has(a[href*="threepercenternation.com"])
google.*##.g,div[data-ow]:has(a[href*="weaponsmedia.com"])
google.*##.g,div[data-ow]:has(a[href*="goyimtv.com"])
google.*##.g,div[data-ow]:has(a[href*="goyimtv.tv"])
google.*##.g,div[data-ow]:has(a[href*="jbs.org"])
google.*##.g,div[data-ow]:has(a[href*="aapsonline.org"])
google.*##.g,div[data-ow]:has(a[href*="parler.com"])
google.*##.g,div[data-ow]:has(a[href*="subscribestar.com"])
google.*##.g,div[data-ow]:has(a[href*="hollaforums.com"])
google.*##.g,div[data-ow]:has(a[href*="victimsofcommunism.org"])
google.*##.g,div[data-ow]:has(a[href*="21stcenturywire.com"])
google.*##.g,div[data-ow]:has(a[href*="365usanews.com"])
google.*##.g,div[data-ow]:has(a[href*="4thmedia.org"])
google.*##.g,div[data-ow]:has(a[href*="4threvolutionarywar.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="70news.wordpress.com"])
google.*##.g,div[data-ow]:has(a[href*="abcnews.com.co"])
google.*##.g,div[data-ow]:has(a[href*="abeldanger.net"])
google.*##.g,div[data-ow]:has(a[href*="abovetopsecret.com"])
google.*##.g,div[data-ow]:has(a[href*="actualidadpanamericana.com"])
google.*##.g,div[data-ow]:has(a[href*="addictinginfo.org"])
google.*##.g,div[data-ow]:has(a[href*="ae911truth.org"])
google.*##.g,div[data-ow]:has(a[href*="americanactionnews.com"])
google.*##.g,div[data-ow]:has(a[href*="americannews.com"])
google.*##.g,div[data-ow]:has(a[href*="americannewsx.com"])
google.*##.g,div[data-ow]:has(a[href*="americanpoliticnews.com"])
google.*##.g,div[data-ow]:has(a[href*="americatalks.com"])
google.*##.g,div[data-ow]:has(a[href*="angrypatriotmovement.com"])
google.*##.g,div[data-ow]:has(a[href*="awarenessact.com"])
google.*##.g,div[data-ow]:has(a[href*="awdnews.com"])