-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSocial_noYandex.txt
13688 lines (13688 loc) · 686 KB
/
Social_noYandex.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
! Checksum: eqa9JI9QmER7VgWleddtrQ
! Title: AdGuard Social Media filter
! Description: Filter for social media widgets such as 'Like' and 'Share' buttons and more.
! Version: 2.0.84.48
! TimeUpdated: 2023-05-20T10:31:43+00:00
! Expires: 4 days (update frequency)
! Homepage: https://github.com/AdguardTeam/AdGuardFilters
! License: https://github.com/AdguardTeam/AdguardFilters/blob/master/LICENSE
!
!-------------------------------------------------------------------------------!
!------------------ General JS API ---------------------------------------------!
!-------------------------------------------------------------------------------!
! JS API START
#%#var AG_onLoad=function(func){if(document.readyState==="complete"||document.readyState==="interactive")func();else if(document.addEventListener)document.addEventListener("DOMContentLoaded",func);else if(document.attachEvent)document.attachEvent("DOMContentLoaded",func)};
#%#var AG_removeElementById = function(id) { var element = document.getElementById(id); if (element && element.parentNode) { element.parentNode.removeChild(element); }};
#%#var AG_removeElementBySelector = function(selector) { if (!document.querySelectorAll) { return; } var nodes = document.querySelectorAll(selector); if (nodes) { for (var i = 0; i < nodes.length; i++) { if (nodes[i] && nodes[i].parentNode) { nodes[i].parentNode.removeChild(nodes[i]); } } } };
#%#var AG_each = function(selector, fn) { if (!document.querySelectorAll) return; var elements = document.querySelectorAll(selector); for (var i = 0; i < elements.length; i++) { fn(elements[i]); }; };
#%#var AG_removeParent = function(el, fn) { while (el && el.parentNode) { if (fn(el)) { el.parentNode.removeChild(el); return; } el = el.parentNode; } };
!
! AG_removeCookie
! Examples: AG_removeCookie('/REGEX/') or AG_removeCookie('part of the cookie name')
!
#%#var AG_removeCookie=function(a){var e=/./;/^\/.+\/$/.test(a)?e=new RegExp(a.slice(1,-1)):""!==a&&(e=new RegExp(a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")));a=function(){for(var a=document.cookie.split(";"),g=a.length;g--;){cookieStr=a[g];var d=cookieStr.indexOf("=");if(-1!==d&&(d=cookieStr.slice(0,d).trim(),e.test(d)))for(var h=document.location.hostname.split("."),f=0;f<h.length-1;f++){var b=h.slice(f).join(".");if(b){var c=d+"=",k="; domain="+b;b="; domain=."+b;document.cookie=c+"; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=c+k+"; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=c+b+"; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=c+"; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=c+k+"; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT";document.cookie=c+b+"; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT"}}}};a();window.addEventListener("beforeunload",a)};
!
! AG_defineProperty
! See https://github.com/AdguardTeam/deep-override
!
#%#var AG_defineProperty=function(){var p,q=Object.defineProperty;if("function"==typeof WeakMap)p=WeakMap;else{var r=0,t=function(){this.a=(r+=Math.random()).toString()};t.prototype.set=function(a,b){var d=a[this.a];d&&d[0]===a?d[1]=b:q(a,this.a,{value:[a,b],writable:!0});return this};t.prototype.get=function(a){var b;return(b=a[this.a])&&b[0]===a?b[1]:void 0};t.prototype.has=function(a){var b=a[this.a];return b?b[0]===a:!1};p=t}function u(a){this.b=a;this.h=Object.create(null)}function v(a,b,d,e){this.a=a;this.i=b;this.c=d;this.f=e}function w(){this.g=/^([^\\\.]|\\.)*?\./;this.j=/\\(.)/g;this.a=new p}function x(a,b){var d=b.f;if(d&&!("beforeGet"in d||"beforeSet"in d))return z(d);var e={get:function(){var c=b.f;c&&c.beforeGet&&c.beforeGet.call(this,b.a.b);a:if(c=b.g)c=A(c)?c.value:c.get?c.get.call(this):void 0;else{c=b.a.b;if(b.i in c&&(c=B(c),null!==c)){var d=C.call(c,b.i);c=d?d.call(this):c[b.i];break a}c=void 0}(this===b.a.b||D.call(b.a.b,this))&&E(a,c,b.c);return c},set:function(c){if(this===b.a.b||D.call(b.a.b,this)){b.f&&b.f.beforeSet&&(c=b.f.beforeSet.call(this,c,this));var d=b.g;d&&A(d)&&d.value===c?c=!0:(d=F(b,c,this),G(c)&&(c=H(a,c),I(a,c,b.c)),c=d)}else c=F(b,c,this);return c}};d&&J(d,e,K);return e}function I(a,b,d){for(var e in d.h){var c=d.h[e];if(b.h[e]){var h=a,g=b.h[e],k=c;!k.f||g.f||"undefined"===typeof g.a.b||g.g||(g.g=z(k.f));g.c&&k.c&&g.c!==k.c&&I(h,g.c,k.c)}else{g=h=void 0;k=a;var f=b,l=c.i,m="undefined"!==typeof f.b,y=!1;m&&(g=L(f.b,l))&&!g.configurable&&(y=!0,h=f.b[l]);var n=y?H(k,h):new u(c.c.b);I(k,n,c.c);n=new v(f,l,n,c.f);f.h[l]=n;m&&(n.g=g,m=x(k,n),y?E(k,h,c.c):(q(f.b,l,m),g&&A(g)&&(M(m,g.value,f.b),E(k,g.value,c.c))))}}}function E(a,b,d){G(b)&&(b=H(a,b),I(a,b,d))}function F(a,b,d){var e=a.g;if(!e){e=B(a.a.b);if(null!==e&&(e=N.call(e,a.i)))return e.call(d,b);if(!O(a.a.b))return!1;a.g={value:b,configurable:!0,writable:!0,enumerable:!0};return!0}return M(e,b,d)}function H(a,b){var d=a.a.get(b);d||(d=new u(b),a.a.set(b,d));return d}function A(a){return"undefined"!==typeof a.writable}function J(a,b,d){for(var e=0,c=d.length;e<c;e++){var h=d[e];h in a&&(b[h]=a[h])}}function z(a){if(a){var b={};J(a,b,P);return b}}function M(a,b,d){if(A(a))return a.writable?(a.value=b,!0):!1;if(!a.set)return!1;a.set.call(d,b);return!0}var P="configurable enumerable value get set writable".split(" "),K=P.slice(0,2),L=Object.getOwnPropertyDescriptor,O=Object.isExtensible,B=Object.getPrototypeOf,D=Object.prototype.isPrototypeOf,C=Object.prototype.__lookupGetter__||function(a){return(a=Q(this,a))&&a.get?a.get:void 0},N=Object.prototype.__lookupSetter__||function(a){return(a=Q(this,a))&&a.set?a.set:void 0};function Q(a,b){if(b in a){for(;!w.hasOwnProperty.call(a,b);)a=B(a);return L(a,b)}}function G(a){var b=typeof a;return"function"===b||"object"===b&&null!==a?!0:!1}var R;return function(a,b,d){R||(R=new w);var e=R;d=d||window;var c=new u;a+=".";var h=c||new u;for(var g=e.g,k=e.j,f,l,m;a;){f=g.exec(a);if(null===f)throw 1;f=f[0].length;l=a.slice(0,f-1).replace(k,"$1");a=a.slice(f);(f=h.h[l])?m=f.c:(m=new u,f=new v(h,l,m),h.h[l]=f);h=m}if(!f)throw 1;a=f;a.f=b;E(e,d,c)};}();
!
! AG_abortOnPropertyWrite(property, debug)
! Aborts execution of a script when it attempts to write the specified property.
! Based on AG_defineProperty (https://github.com/AdguardTeam/deep-override)
!
! Examples:
! AG_abortOnPropertyWrite('String.fromCharCode');
!
! @param property property or properties chain
! @param debug optional, if true - we will print warning when script is aborted.
!
#%#var AG_abortOnPropertyWrite=function(a,b){var c=Math.random().toString(36).substr(2,8);AG_defineProperty(a,{beforeSet:function(){b&&console.warn("AdGuard aborted property write: "+a);throw new ReferenceError(c);}});var d=window.onerror;window.onerror=function(e){if("string"===typeof e&&-1!==e.indexOf(c))return b&&console.warn("AdGuard has caught window.onerror: "+a),!0;if(d instanceof Function)return d.apply(this,arguments)}};
!
! AG_abortOnPropertyRead(property, debug)
! Aborts execution of a script when it attempts to read the specified property.
! Based on AG_defineProperty (https://github.com/AdguardTeam/deep-override)
!
! Examples:
! AG_abortOnPropertyRead('String.fromCharCode');
!
! @param property property or properties chain
! @param debug optional, if true - we will print warning when script is aborted.
!
#%#var AG_abortOnPropertyRead=function(a,b){var c=Math.random().toString(36).substr(2,8);AG_defineProperty(a,{beforeGet:function(){b&&console.warn("AdGuard aborted property read: "+a);throw new ReferenceError(c);}});var d=window.onerror;window.onerror=function(e){if("string"===typeof e&&-1!==e.indexOf(c))return b&&console.warn("AdGuard has caught window.onerror: "+a),!0;if(d instanceof Function)return d.apply(this,arguments)}};
!
! AG_abortInlineScript(regex, property, debug)
! Aborts execution of an inline script when it attempts to access the specified property
! AND content of the <script> element matches specified regular expression.
! Based on AG_defineProperty (https://github.com/AdguardTeam/deep-override)
!
! Examples:
! AG_abortInlineScript(/zfgloadedpopup|zfgloadedpushopt/, 'String.fromCharCode');
!
! @param regex regular expression that the inline script contents must match
! @param property property or properties chain
! @param debug optional, if true - we will print warning when script is aborted.
!
#%#var AG_abortInlineScript=function(g,b,c){var d=function(){if("currentScript"in document)return document.currentScript;var a=document.getElementsByTagName("script");return a[a.length-1]},e=Math.random().toString(36).substr(2,8),h=d();AG_defineProperty(b,{beforeGet:function(){var a=d();if(a instanceof HTMLScriptElement&&a!==h&&""===a.src&&g.test(a.textContent))throw c&&console.warn("AdGuard aborted execution of an inline script"),new ReferenceError(e);}});var f=window.onerror;window.onerror=function(a){if("string"===typeof a&&-1!==a.indexOf(e))return c&&console.warn("AdGuard has caught window.onerror: "+b),!0;if(f instanceof Function)return f.apply(this,arguments)}};
!
! AG_setConstant('property.chain', 'true') // defines boolean (true), same for false;
! AG_setConstant('property.chain', '123') // defines Number 123;
! AG_setConstant('property.chain', 'noopFunc') // defines function(){};
! AG_setConstant('property.chain', 'trueFunc') // defines function(){return true};
! AG_setConstant('property.chain', 'falseFunc') // defines function(){return false};
!
#%#var AG_setConstant=function(e,a){if("undefined"===a)a=void 0;else if("false"===a)a=!1;else if("true"===a)a=!0;else if("noopFunc"===a)a=function(){};else if("trueFunc"===a)a=function(){return!0};else if("falseFunc"===a)a=function(){return!1};else if(/^\d+$/.test(a)){if(a=parseFloat(a),isNaN(a)||32767<Math.abs(a))return}else return;var b=!1;AG_defineProperty(e,{get:function(){return a},set:function(c){if(b)var d=!0;else void 0!==c&&void 0!==a&&typeof c!==typeof a&&(b=!0),d=b;d&&(a=c)}})};
! JS API FINISH
!-------------------------------------------------------------------------------!
!-------------- Common social trackers -----------------------------------------!
!-------------------------------------------------------------------------------!
!
! This section contains rules for common trackers/buttons
!
! This section contains the list of the rules for common trackers/buttons.
!
! Good: ||example.org^$third-party (if it's social tracker)
! Bad: @@||example.org^$stealth (should be in AdGuard Base - allowlist_stealth.txt)
!
!
||share-count.donreach.com^$third-party
||button-follow.zalo.me^$third-party
||button-share.zalo.me^$third-party
||xn--r1a.website^$third-party
||share.gree.jp^$third-party
||twitter.countoon.com^$third-party
||twitcount.com^$third-party
||mixi.net/img/basic/mixicheck_entry/
||media.line.naver.jp/js/line-button.js
||platform.tumblr.com/v1/share
||b.hatena.ne.jp/images/entry-button/$third-party
||amazonaws.com/*/hatena-widget.js
||st-hatena.com^*/entry-button/
||jsoon.digitiminimi.com^$third-party
||omt.shinobi.jp^$third-party
||friends2follow.com^$third-party
||b.hatena.ne.jp/js/bookmark_button.js$third-party
||getbutton.io^$third-party
||getbtn.com^$third-party
||snapwidget.com^$third-party
||widget.instodom.com^$third-party
||mediabuttons.ru^$third-party
||tgwidget.com^$third-party
||share.itraffic.su^$third-party
||d.line-scdn.net/r/web/social-plugin/js/thirdparty/loader.min.js$domain=~weleda.jp
||widgets-code.websta.me^$third-party
||graph.facebook.com/?id=$third-party
||widget.pushbullet.com^$third-party
||youtube.com/subscribe_embed?$third-party
||addnow.com/widget/$third-party
||addthis.com^$third-party,domain=~civilization.com|~imgur.com
||addthiscdn.com^$third-party
||addtoany.com/share$third-party
||api.flattr.com/button^$third-party
||api.linkedin.com/*/shares^$domain=~linkedin.com
||api.tweetmeme.com/button.js$third-party
||api.twitter.com/*/count.json$third-party
||assets.pinterest.com/images/pidgets/$third-party
||assets.pinterest.com/js/pinit.js^$third-party
||button.flattr.com^$third-party
||cdn.wibiya.com^$third-party
||changetip.com^$third-party
||cms.myspacecdn.com/cms//ShareOnMySpace/$third-party,domain=~myspace.com
||connect.mail.ru/$third-party
||connect.mail.ru/share_button
||coverweb.org^$third-party
||designchemical.com/blog/wp-content/themes/dc2011/dcssb/css/social.css
||diggstatic.com/img/badges/$domain=~digg.com
||e-mailit.com/widget/$third-party
||facebook.com/*/plugins/$domain=~facebook.com
||facebook.com/*/plugins/page.php$third-party
||facebook.com/*/plugins/share_button.php$third-party
||facebook.com/connect/connect.php$third-party
||facebook.com/method/links.getStats$third-party
||facebook.com/plugins/$domain=~facebook.com|~freepresets.com
||facebook.com/sharer.php$third-party,domain=~speedtest.net
||facebook.com/sharer/sharer.php$third-party
||facebook.com/tr/?
||facebook.com/widgets/$third-party
||filamentapp-assets.s3.amazonaws.com^$third-party
||filamentapp.s3.amazonaws.com^$third-party
||flickr.com/badge_code$third-party
||friendfeed.com/embed$third-party
||ghbtns.com/github-btn.html$third-party
||goodshare.ru^$third-party
||google.com/buzz/api$third-party
||google.com/friendconnect/script$domain=~blogger.com|~blogspot.com
||google.com^*/fastbutton?$third-party
||graph.facebook.com/fql?q=SELECT$third-party
||hn-button.herokuapp.com$third-party
||hupso.com/share^$third-party
||jquery-library.net/plusplus$third-party
||lessbuttons.com^$third-party
||likebtn.com^$third-party
||linkedin.com/shareArticle$third-party
||linksalpha.com^$third-party
||livejournal.com/update.bml?$third-party
||nwidget.networkedblogs.com^$third-party
||odnaknopka.ru/$third-party
||odnoklassniki.ru/dk?st.cmd=addShare$third-party,domain=~mail.ru|~odnoklassniki.ru
||odnoklassniki.ru/dk?st.cmd=extLike$third-party
||odnoklassniki.ru/dk?st.cmd=WidgetGroup$third-party,domain=~mail.ru|~odnoklassniki.ru
||odnoklassniki.ru/dk?st.cmd=WidgetShare$third-party,domain=~mail.ru|~odnoklassniki.ru
||ok.ru/dk?st.cmd$third-party
||pinterest.com/js/pinit_main.js$third-party
||pinterest.com/pin/create/button/?url=$third-party
||pinterest.com/pinit.html$third-party
||pinterest.com/v1/urls/count.json$third-party
||platform.linkedin.com^$third-party
||platform.stumbleupon.com/*/widgets.js$third-party
||platform.twitter.com/js/button.$third-party
||platform.twitter.com/oct.js$third-party
||platform.twitter.com/widgets/follow_button$third-party
||platform.twitter.com/widgets/tweet_button$third-party
||plus.google.com/share$third-party
||plusone.google.com^$third-party
||reddit.com/api/info.json?$third-party
||reddit.com/static/button/$third-party
||redditstatic.com/button/button*.$domain=~reddit.com
||saiter.ru/js/$third-party
||share.pluso.ru^$third-party
||share.yandex.net^$third-party
||share.yandex.ru^$third-party
||shareaholic.com^$third-party
||sharethis.com^$third-party
||shorte.st^$third-party
||sp.me.zing.vn/plugins/subscribe
||static.addtoany.com$third-party
||static.bufferapp.com/js/button.js
||static.hootsuite.com^$third-party
||stg.odnoklassniki.ru/share/$third-party,domain=~mail.ru|~odnoklassniki.ru
||stumbleupon.com/badge/$third-party
||sumome-140a.kxcdn.com^$third-party
||surfingbird.ru/button^$third-party
||surfingbird.ru/share^$third-party
||t.co/i/adsct$third-party
||taboolasyndication.com^$third-party
||traq.li^$third-party
||tumblr.com/share/$third-party
||tweetmeme.com/i/scripts$third-party
||twitter-badges.$third-party
||twitter.com/home?status=$third-party
||twitter.com/share$third-party
||usocial.pro^$third-party
||vk.com/images/upload.gif$domain=~vk.com|~vkontakte.ru
||vk.com/js/api/share.js$third-party
||vk.com/share.php$third-party
||vk.com/widget_$domain=~redspell.ru|~vk.com
||vkontakte.ru/app1982352$third-party
||vkontakte.ru/js/api/share.js$third-party
||vkontakte.ru/share.php$third-party
||vkontakte.ru/widget_like.php$third-party
||w.uptolike.com^$third-party
||weheartit.com^$third-party
||widgets.bufferapp.com^$third-party
||widgets.getpocket.com^$third-party
||woobox.com^$third-party
||wykop.pl/dataprovider/diggerwidget/$third-party
||x.pluso.ru^$third-party
||xing-share.com^$third-party
||yandex.st/share/share.js$third-party
||yastatic.net/*/share.js$third-party
||youtube.com/subscribe_widget$third-party
!
||ssl.pstatic.net/share/js/naver_sharebutton.js$domain=~naver.com
||developers.band.us/js/share/band-button.js^$third-party
||media.line.me/js/line-button.js^$third-party
||cp.news.search.daum.net/api/publish.json^
!-------------------------------------------------------------------------------!
!-------------- Unsorted urls --------------------------------------------------!
!-------------------------------------------------------------------------------!
!
! This section contains the list of generic blocking rules.
!
! Good: .org/ads/
! Bad: .org/ads/$domain=example.org (for instance, should be in speficic.txt)
!
!
||biz.line.naver.jp/line_business/img/btn/addfriends_
||wp.com/biz.line.naver.jp/line_business/img/btn/addfriends_
/wp-content/plugins/wp-tweet-button/*
/wp-content/plugins/kadence-simple-share/*
/wp-content/plugins/wp-social-bookmarking-light/*
||share.donreach.com^$third-party
/plugins/content/jllike/*
/Twitter_b_rect.$image
/linebutton_$image
/wp-content/plugins/add-to-any/addtoany.min.
/xeory-core/modules/xeory-social/*
/simplicity2/images/line-btn
||plugins.mixi.jp/favorite.pl
||cdn.ampproject.org/v*/amp-social-share-
/whatsapp-button.
||static.mixi.jp/js/share.js$third-party
/wp-content/plugins/cool-image-share/*
/wp-content/plugins/instagram-feed/*$~stylesheet
||s3.feedly.com/img/follows/$third-party
/wp-content/plugins/wpupper-share-buttons/*$~stylesheet
/wp-content/plugins/ultimate-social-media-plus/*
||st-hatena.com/js/bookmark_button_wo_al.js$third-party,domain=~hatena.com
/share_icon_
/images/share_
/plugins/facebook-page-promoter-$~stylesheet
||flipboard.com/web/buttons/$third-party
||embed.tumblr.com/widgets/share/button$third-party
||platform.tumblr.com/v2/follow_button.html$third-party
/plugins/content/jllikepro/js/buttons.
/wp-content/plugins/sassy-social-share/*$domain=~nova.rs|~n1info.com
/asd.share.buttons/*
/copy_to_blog_button_
/copy_to_blog_icon_diary.gif
/copy_to_blog_icon_liveinternet.gif
/copy_to_blog_icon_twitter.gif
/fb-like-pop.js
/fb-traffic-pop.js
/fbautolike.js
/fbLikePopup*.js
/goodshare/*
/heart_it_button.js
/icons/share.jpg
/images/social/*$domain=~schonmagazine.com|~waymo.com|~liga-manager.de|~techspot.com|~sport1.de|~bett1.de|~smofast.com|~promin.cv.ua|~rsload.net|~esportsearnings.com|~vortez.net|~programmingwithmosh.com|~wasabiclassics.com|~kolodischi.by|~pesstatsdatabase.com|~anime-online.su
/images/vk.png$domain=~russiancouncil.ru|~tapochek.net|~cheater-top.ru|~epicl2.com|~epicwow.com|~monolife.ru|~mos.ru|~playground.moscow|~dev-source.ru
/img/facebook.gif
/img/twitter.gif
/jquery.shareaholic-publishers-sb.min.js
/js/soc_set.js
/juiz-social-post-sharer.min.js
/likely.css
/likely.js$domain=live.skillbox.ru
/mashnet.min.js
/mashsb.min.js
/plugins/mashsharer/*
/plugins/wp-share-to-xing/*
/pluso-like.js
/promo/facebook.png
/promo/twitter.png
/share/share1.js
/share42-16.js
/share42.js$domain=~dontreg.ru|~kinopovod.tv
/share424.js
/share_button.png
/shareaholic.js
/sharebox.min.js
/sharedaddy/sharing.js
/sharing_buttons.js
/social-likes.min.js$domain=~animego.org|~zastenchivosti.net|~gorod-812.ru|~sputnik.by|~sputnik-news.ee|~animalreader.ru|~ichip.ru|~keddr.com|~kino-max.com|~kino24x7.com|~make-3d.ru|~miuipro.ru|~omelchuck.ru|~podfm.ru|~serial-online.com|~sputniknews.com|~trinixy.ru|~kinogo-kinopoisk.net|~bobfilm-online.ru|~westernfilm.ru|~bobfilm.tv|~kinokrik.net|~kinogo720.net|~kinogo-net-co.ru|~kinoklad.net|~intex-press.by|~kino-max.org|~farming-simulator15.ru|~trikky.ru|~trv-science.ru|~unzensuriert.at|~lizaalert.beeline.ru|~megapolisonline.ru|~sputniknews.ru|~miuipro.info|~sputnik.kg|~1prime.ru|~mobnovelty.ru|~poisktehniki.ru
/social_networks.js
/socialbar-js.php
/socialbuttons.js
/socialite.js
/socialite.min.js
/socializ.js
/socializ_3.js
/socialize.js
/socialshareprivacy/*$~script,~stylesheet
/src/gstoolbar2/js/tool.js
/plugins/ultimate-social-deux/*$~stylesheet
/widget/?45
/wp-content/plugins/2-click-socialmedia-buttons/*
/wp-content/plugins/aspexi-facebook-like-box
/wp-content/plugins/custom-fan-gate-plugin/*
/wp-content/plugins/easy-social-share-buttons$~stylesheet,domain=~geekculture.co
/wp-content/plugins/facebook-page-promoter-lightbox/*
/wp-content/plugins/flare/*
/wp-content/plugins/indeed-social-media/*
/wp-content/plugins/monarch/*$~font,domain=~elegantthemes.com|~philosophia-perennis.com
/wp-content/plugins/social-count-plus/*
/wp-content/plugins/social-share-buttons-by-supsystic/*
/wp-content/plugins/social-warfare/*
/wp-content/plugins/wordpress-social-share-buttons/*
/wp-socializer/*
/zakladki.js
_follow_me-b.png
_social-button-
_social-buttons-
images/livejournal
lj_bookmarklet
!
/btn_sns_$image,domain=~nikkan-gendai.com
/icon_kakao.
/send_kakaotalk.
/image2006/default/facebook.gif^
/image2006/default/google.gif^
/image2006/default/me2day.gif^
/image2006/default/msn.gif^
/image2006/default/naver.gif^
/image2006/default/Twitter.gif^
/image2006/default/yozm.gif^
!---------------------------------------------------------------------------!
!-------------- Extended CSS rules -----------------------------------------!
!---------------------------------------------------------------------------!
!
! This section contains the list of extended CSS rules against social widgets.
! Note, that rules should be domain-specific and you have to use special syntax `#?#` instead of `##`.
!
! Good: example.org#?#main > div.row:has(> div.ad)
! Bad: example.org##main > div.ad (should be in specific.txt)
!
!### Temporary ###
!#################
!
[$path=/plugins]facebook.com#?#body.plugin div.pluginSkinLight div[class][style^="padding-bottom:"] > div[class]:not([id]) div[class]:has(> div + button.accessible_elem:contains(Поделиться))
soccer-db.net#?#.main_contents > .right_link:has(> .twitter-share-button)
vidmo.pro#?##mcont > div.items:has(> div.item-card > div.addthis_inline_share_toolbox)
[$path=/maps]google.*#?#div[jslog*="mutable:"] > div[class]:has(> div[class] > button[jsaction^="pane."][jslog$="track:click"] > div[style] > img[src^="//maps.gstatic.com/tactile/share/"])
keycdn.com#?#.font-weight-semi-bold:contains(Share)
informing.ru#?#.news-details-layout1> div.text-center:has(> div[style] > a[href^="https://yandex.ru/news/"][target="_blank"][rel^="nofollow"])
ritsatv.ru#?#font > div[align="center"]:has(> div.uSocial-Share)
elitebabes.com#?#.post-ratings > li:has(> a[href] > i.icon-share)
tv8.md#?##__next > div.MuiContainer-root > a[target="_blank"][href]:has(> img[alt])
tv8.md#?#.MuiContainer-root > div[class]:has(> img[src$="closeShareNews.svg"])
focus.ua#?#.s-content > p:has(> a[href="https://t.me/Focus_Science"])
cmjornal.pt#?#.fotoUtils > li:has(> span#partilhar-fotogaleria)
mentalfloss.com#?#article > div[class^="sticky_"]:has(> div[class^="wrapperBase_"] > a[data-vars-type="click"] > img[alt="facebook"])
deepmind.com#?#body > div > div.c_cms_content__meta__container:has(> div.c_cms_content__meta__wrapper > ul > li.c_blog_content__meta__share_item)
hepper.com#?#.flex > div.hidden:has(> span:contains(Share))
histrf.ru#?#div:not([class]) > div.shadow-drop-2:has(> div.social-sharing)
comic.k-manga.jp#?##contents > section:has(> div.share-button)
forpost-sevastopol.ru#?#main > div > i:contains(Поделиться)
zn.ua#?#.content__news > div.content-title:has(> div.content-title__link:contains(/ЧИТАЙТЕ НАС В СОЦСЕТЯХ|FOLLOW US ON SOCIAL NETWORKS|ЧИТАЙТЕ НАС У СОЦМЕРЕЖАХ/))
toranoana.jp#?#section > div.main-infosub:has(> div.detail3-sns-list-container)
sportskeeda.com#?#.story-user-actions > div.share-action
sportskeeda.com#?#.story-user-actions > a.follow-action
rouman5.com#?#.col-md-4 > div.row:has(> div.col > button.react-share__ShareButton)
nos.nl#?#main > div > div:has(> p:contains(/^Deel artikel/))
wanhaber.com#?#.share-area button:has(> i[class^="fa fa-share"])
chimesradio.com#?#.elementor-widget-text-editor div.elementor-widget-container p:contains(Share)
espncricinfo.com#?#article button.ds-flex:has(> .icon-share-outlined)
tsn.ua#?#div.c-bar__row--sin > dl.c-bar:has(> dt.c-bar__label:contains(Поделиться))
bleepingcomputer.com#?#li > a.cz-news-link:upward(1)
coe.int#?#.portlet-boundary > section.portlet:has(> div.portlet-header > div.portlet-title > span:contains(/coe on twitter|coe on Twitter|Facebook/))
neon.tech#?#article > div.safe-paddings:has(> div.flex button.react-share__ShareButton)
cashify.in#?#.horizontal.web-view:has(> div.horizontal.center-center > span)
malavida.com#?#.sidebar > div.sidebox:has(> div.social > a#share-facebook)
ign.com#?#.video-meta > .meta-wrapper > button:contains(/^Share$/)
trovo.live#?#.feature-wrap > .cat-button:has(> .icon-icon-share)
spid.center#?#div[class^="_"]:has(> a[class][href^="//odnoklassniki.ru"])
spid.center#?#article > div[class]:has(> div[class^="_"] > h3 + ul[class^="_"])
rakukan.net#?#.module:has(> [class^="twitter-"])
coolrom.com.au#?#font table[width][cellpadding="3"]:has(> tbody > tr > td > b:contains(/^Share:$/))
athome.co.jp#?##content > section > .bg-offwhite:has(> .label-sns)
mechacomic.jp#?#article > section.c-content:has(> div.area_btn_sns)
sravni.ru#?#div[class^="article-header_interactiveBlock_"] > div:has(svg[data-qa="Share"])
keisuke-ueda.jp,ado-dokidokihimitsukichi-daigakuimo.com,dazbee-fc.com,asato-yuya.com,yamingfc.net,takahashifumiya.com,canan8181.com,hololive-fc.com,tokinosora-fc.com,nicochannel.jp,rnqq.jp#?#.MuiBox-root > button:has(> span > svg > path[d^="M18 16.08c-"])
keisuke-ueda.jp,ado-dokidokihimitsukichi-daigakuimo.com,dazbee-fc.com,asato-yuya.com,yamingfc.net,takahashifumiya.com,canan8181.com,hololive-fc.com,tokinosora-fc.com,nicochannel.jp,rnqq.jp#?#.MuiBox-root > div.MuiBox-root:has(> button.react-share__ShareButton)
opensubtitles.com#?##menu-footer-links > .nav > li:last-child:contains(Share)
android-robot.com#?#.entry-info > div.entry-categories:has(> div.ya-share2)
obrazovaka.ru#?#.lft > h3:contains(Поделитесь результатом в социальной сети:)
bloknot.ru#?#.bg-bloknot_beige > section > div:has(> div > .ya-share2)
raovat.tuoitre.vn#?#.detail__section + .mt-3:has(> .flex > .article__social)
fashionsnap.com#?#div[class^="_"] > div[class^="_"]:has(> div > a[href*="share"])
vgr.by#?#.edgtf-post-text-inner > div.edgtf-post-info-bottom:has(> div.edgtf-share-label)
ranking.net#?#.box > div.flex:has(> a[href^="https://twitter.com/intent/tweet"])
diariodaregiao.com.br#?#div[class] > p:contains(/^Compartilhar$/)
meiwasuisan.com##body > div.toTheEdge:has(> ul.sns-buttons)
cloudbase.gg#?#.kt-inside-inner-col > p[class^="kt-adv-heading_"]:contains(Share)
githubnext.com#?#.text-xs:contains(Share)
asianpinay.to#?#.textwidget > p:contains(Share)
gendai.media#?#.pagination + div:has(> div.articleShareIcons)
lisani.jp#?#.detail__wrap > p.parts__title__tertiary:contains(SHARE)
intellishift.zoom.us#?##webinar_register_container > div.form-group:has(> div.controls > span > a.share-ico)
booksprivilege.com#?##sidebar > div.side_widget:has(> div.textwidget > a.twitter-timeline)
webtekno.com#?#.sidebar > div.sidebar-block:has(> ul.sidebar-social)
bugununhaberi.com,karadenizmanset.com,saraykoy.com.tr,sporhd.com#?##page_right > div.right_block:has(> div.socialRightBlock)
sarkisozlerihd.com#?#.lyric-bottom > div.pull-right:has(> span.lyric-share)
pokeminers.com#?#.col-lg-4 > div.inner-card:has(> div.twitter-timeline)
nytimes.com#?#div[data-testid="share-tools"] ul > li[class^="css-"]:has(button[aria-label*="sharing"][aria-haspopup="true"])
crn.com#?#.article > div.col-12:has(> div.mt-3 > div.row > div.col-xxl-12 > table.social-spacer)
substack.com#?#div > a[role="button"]:has(> div.label:contains(Share))
calc-site.com#?##right_navi > .left_navi01:has(> .left_navi05.left_navi05_pad)
tportal.hr#?#.contentBlockWrap:has(> div.contentBlock > div.t-share)
timesnownews.com#?#.trinity-skip-it div[class]:has(> div > a[href^="https://www.facebook.com/sharer/sharer.php"])
zaytung.com#?#font > div:has(> iframe[src^="http://www.facebook.com/plugins/likebox.php"])
zaytung.com#?#font > div:has(> div.twitter-timeline)
zaytung.com#?#font > div:has(> div.fb_iframe_widget)
zaytung.com#?#div[align="left"] > p:has(> span[width="220px"] > a[href^="http://twitter.com/share?"])
nativecamp.net#?#.individual_sidebar_content_bottom > div.tab_content_action_column > a[href^="http://twitter.com/"]:upward(2)
narecza.com#?#.row > div.fl:has(> div.shareBtns)
healthline.com#?#div[data-article-body] h1 ~ div[class] > div[class]:has(> p + div > div.facebook)
cepro.com#?#.social-share-new > .et_pb_column > .et_pb_text > .et_pb_text_inner > p:contains(/^SHARE$/)
tiempo.com##.botonera > span.boton:has(> span.shared)
berliner-zeitung.de#?#ul[class^="articlepreviewfooter_menu"] > li[class^="articlepreviewfooter_menu-item"]:has(> button > img[aria-label="share-icon"])
widget.oanda.jp#?#.origin-top-left > div > .flex.items-center:has(> p:first-child + .items-center:last-child > a[href^="https://twitter.com/intent/tweet?"])
canonical.com#?##main-content > article > header > .row > .col-4 > .p-inline-list-icons:has(> li.p-inline-list__item:contains(Share on:))
techlusive.in#?#.leftWrap div.widget-list:has(> div.widget_footer > div.isocial)
wonderful-car-life.com#?#.controllerFooter__list > li.controllerFooter__item:has(> label > i.icon-share2)
spb-guide.ru##div[data-nosnippet] > table:has(div.ya-share2)
gitpod.io#?##main-content div.flex > div.flex:has(> h2:contains(Share))
tudn.com,univision.com#?#div[class]:contains(/^Comparte$/)
wallscloud.net#?#.container-right > div.rside-box:has(> div.share-wall)
shindanmaker.com#?##main > div.pb-5:has(> a.twitter-share-button)
geartics.com#?#.mt-10 > div.share-buttons:upward(1)
elfinanciero.com.mx#?#div.flex_align-items-center:has(> button[title="twitter"])
elsiglodetorreon.com.mx#?#.comparte > small:contains(COMPARTIR)
bst.bratsk.ru#?#.block > div.title-medium-container:has(> h2:contains(Поделиться статьей))
danas.hr#?#.meta_info > ul:has(> li > div > a[href^="http://www.twitter.com/share"])
rbclife.ru#?#article > div.gutter-b:has(> div.social-sharing)
jetstream.bz#?#.post > h2[data-amp-original-style="padding-left:3%;margin-top:5%;margin-bottom:5%"]:contains(この記事をシェア)
eldiario.com.co#?#.vc_row > div.vc_column:has(> div.wpb_wrapper > div.td_block_social_counter)
filespace.com#?#.col-lg-8 tr:has(a[onclick^="share_"])
akorda.kz#?#.showblock > div.tab-content:has(> div.mb-5 > div.twitter-timeline)
hypegamenews.ru#?#.right-col > div.block-header:contains(Группа в VK)
minuto30.com#?##content > div.code-block:has(> div.fb-page)
wykop.pl#?#section.actions > ul > li.no-separator:has(> .share-socials)
s.wowkorea.jp#?##contents > div > div.sns:upward(1)
nw.de#?#footer > div:has(> a.share)
elliberal.com.ar#?#.col-12 > ul:has(> li > a[onclick^="compartir("])
grupormultimedio.com#?##wi-bf > div.wi-section:has(> div.container > div.section-container div.widget_instagram)
answers.com#?#div[aria-labelledby="dropdown-menu"] > span.block[role="menuitem"]:has(> a[aria-label="Share Content"])
qiita.com#?#.it-MdContent + div[class^="style-"]:has(> button[aria-label^="Share on"])
hardwareluxx.ru#?#section > aside:has(> div[id^="vk_like"])
bnr.bg#?#.row > div.span-12:has(> div.article-block > h5 > span:contains(Споделете))
book.dmm.com#?#div:has(> button[class] > i[data-name="share"])
anime-torrent.com#?#header > label.fab-btn:has(> .fa-share-alt)
oceans-nadia.com#?#div[class^="smp_wrap"] > div[class^="smp_box"]:has(> div[class^="SocialShare_box"])
ndl.go.jp#?#.profileAreainside > h2:contains(SNSでシェア)
hinode.pics#?##right_wrap > div.right_plugin_wrap:has(> div.right_plugin_title:contains(SNS Timeline))
sketch.metademolab.com#?#.canvas-wrapper .text-center > button.btn-info:has(> img[src^="/static/media/nav_share."])
google.*#?#div[data-hveid] > div[class*=" "] > div[class]:has(> div[role="button"] > div[class*=" "] span > svg > path[d^="M18 16.08c-"])
spiegel.de#?#.border-separator-t > ul.flex:has(> li.pl-24 > a.inline-flex > svg[id^="spon-mail"])
hrt.hr#?#.mt-4 > .hidden > .h-screen:has(> a[title="E-mail"])
meetup.com#?#.flex-item > div.flex--row:has(> div.event-share)
cashless.pl#?#.justify-between > div:contains(UDOSTĘPNIJ TEN ARTYKUŁ):upward(1)
privacysavvy.com#?##ps-lrc_last_sections > div.mb-14 > span:contains(Share):upward(1)
echofm.online#?#a[href^="https://t.me/share/"]:upward(1)
svetacdn.in#?##pjsfrrsplayer ~ pjsdiv[style]:has(> pjsdiv:not([style]) > pjsdiv[style*="background: rgb(42, 161, 194);"][style*="transform: scale(3.5);"]) + pjsdiv
pch24.pl#?#.row > div.align-items-center:has(> div.text-uppercase:contains(Udostępnij))
buzzfeed.com#?#article > div.embed-action-bar:has(> div:not([class]):empty)
jjan.kr#?#.share_container a:not(:has(div[class*="txt-size"]))
o2.pl#?#div[data-st-area="st-gallery-reactions"] button:has(> svg > path[d^="M3.31104 8.16268L12.1592"])
wassada.com#?#td[style] table[style] td[align="left"]:has(a[href*="//twitter.com/intent/tweet"])
starwalk.space#?#div[data-nosnippet="true"]:has(> div[class] > div[class] > a[id^="facebook-share"])
dobreprogramy.pl#?#div[data-action-id] button:has(> div > svg > path[d^="m8.59 13.51"])
dobreprogramy.pl#?#div:has(> button > div > svg > path[d^="M18 2h-3a5"])
radarbox.com#?#body > div > .modal-component:has(> .content > a[href^="https://twitter.com/intent/follow?"])
realmadryt.pl#?#.social-container--box > .social-container--item:not(:has(> a[href="#c-comments"]))
cumhuriyet.com.tr#?#article > section:has(> div[style] > a[href^="https://www.youtube.com/channel/"])
deseret.com#?#.ActionBar-items > .ActionBar-items-item:has(> .ActionLink > span:contains(/^SHARE$/))
audiomania.ru#?#.worldhifi-tags-block:has(> span > a[href^="http://vk.com/share.php"])
pudelek.pl#?#div[data-st-area="st-gallery-reactions"] > div[class] > div[class^="sc-"]:has(> div[class^="sc-"] button.react-share__ShareButton)
canberratimes.com.au#?#div.flex > a[class^="gtm-hook-share"]:upward(1)
przegladsportowy.onet.pl#?#.items-end button.items-center:has(> span:contains(Udostępnij))
bosnainfo.ba#?#footer > div.container:has(> div.container > div.fb__page)
seekingalpha.com#?#div[data-test-id="left-rail"] > div > div:has(> div > button[aria-label="Share options"])
hakimiyet.com,elazigonline.com,sha.com.tr#?#.items-center > span[class="hidden lg:block"]:contains(/^PAYLAŞ$/)
sobesednik.com#?#.flex-grow > div.flex:has(> div.ya-share2)
zawazawa.jp#?#.aside-group > .twitter-widget-wrapper:upward(1)
svetacdn.in,tvmovies.in#?##oframeplayer > pjsdiv:has(> pjsdiv > pjsdiv[style*="transform"] > svg > g > path[d^="M5.5662845,8.26248366"])
delivembed.cc#?#div[class^="top-right_"] > button[class^="button_"]:has(> span > span:contains(Поделиться ссылкой))
moroccoworldnews.com#?#.social__media > ul > li:not(:has(> span[style]))
technodom.kz#?#.product-actions__interactions-wrapper > button.product-actions__interaction:has(> p.product-actions__interaction-text:contains(Поделиться))
name-power.net#?#.social:has(> .fb-like)
streamlit.io#?#article > section:has(> h2:contains(/^Share this post$/))
binance.com#?#h6:contains(/^Share Posts$/):upward(1)
renfei.net#?#.ant-space:has(> div.ant-space-item > button[class*="Share"])
lasestrellas.tv#?#div[id^="end-articleInfinite-Scroll-"] > div[class]:has(> a[href^="https://www.facebook.com/dialog/share?"])
okmagazine.com#?##ok-article-meta > div > div:has(> a[href^="https://www.facebook.com/sharer/sharer.php"])
disntr.com#?##main-content div.et_pb_module:has(> div.et_pb_code_inner a#gab-share-btn)
begindot.com#$?#.e-con-inner > div.elementor-element:has(> div.elementor-element div[data-widget_type="share-buttons.default"]) { visibility: hidden !important; }
sportsmole.co.uk#?##article_content > div.center:has(> div.social)
fortune.com#?##content div[class^="sc-"]:only-child:has(> div[class^="sc-"] > a[href*="https://www.facebook.com/sharer.php"])
realting.com#?#.article-content > div.text-center:has(> div:contains(Поделиться с помощью))
capital.com#?#.grid:has(> div.socShare)
thedrive.com#?#.container > div > span.MuiTypography-button:contains(Share):upward(1)
slamdunk.ru#?#.lside_block:has(> ul[data-controller="core.front.core.sharelink"])
kontramarka.ua#?#.content-block:has(> div.follow_us)
lu.ma#?#.right-section > div > .luma-button:has(> .label:contains(Share This Event))
febri.jp#?#.box-outlink:has(> div.outlink-content > div.list_social)
ranking.net#?##js-top > div.flex > a[href^="https://twitter.com/intent/"]:upward(1)
realt.by#?#div.col > div.object-item div[class^="col"]:has(> div.ya-share2)
voleybolmagazin.com#?#.theiaStickySidebar > div.widget_text:has(> div.textwidget > a.twitter-timeline)
leeapk.com#?#article > div.text-center:has(> ul.list-shares)
flashback.org#?#.pull-left a.dropdown-toggle:has(> span > i.fa)
3c5.com#?#h2:contains(Share URL)
fukuishimbun.co.jp#?##sub-column > .line-info.clearfix:has(> .line-news-banner)
fukuishimbun.co.jp#?##sub-column > .line-info.clearfix:has(> .line-news-banner) + hr
jreastmall.com#?#form > ul.option_buttons_:has(> .social_)
japan.zdnet.com#?#article > div.pg-mod:has(> div.article-sns)
hotpepper.jp#?#.shopInfoBody > dd.shopInfoContents:has(> div.shopInfoInner > div.shopInfoShare)
motorsport-total.com#?#.pull-right > div.teaser_container:has(> div.f1de-container > div.block-title:contains(/Twitter|Facebook|Instagram/))
film.ru#?##recommendation > div.recommendation_button:contains(/^Поделиться в социальных сетях$/)
s.kabutan.jp#?#article > ul.text-right:has(> li.inline-block > a[href^="https://twitter.com/intent/tweet?"])
popnroll.tv#?#li > button > span:contains(ツイート):upward(1)
saga-s.co.jp#?#.article-footer-bottom:has(> div.article-sns > div.article-sns__item)
meteored.com.ar#?#.franjas > aside:has(> div#meteored_share)
imgur.com#?##main-sidebar > div.sb-widget:has(> div.widget-content > div.fb-page)
lectormanga.com,lectortmo.com#?#div.text-center:has(> h3:contains(/^Compartir/))
mindbodygreen.com#?##article-container > div:has(> button > svg[width="30"][height="30"])
news.mynavi.jp#?#.article > div.article_content:has(> ul.sns_share_list)
proton.me#?#.justify-center > div.flex-end:has(> p:contains(Share))
washingtonpost.com#?#div[data-qa="article-actions"] > div[class^="wpds-c-"] > div[class^="wpds-c-"]:has(> button[aria-label="Share"])
adme.media#?#article > div[class] > div[class]:has(> div[class]:contains(Поделиться этой статьёй))
forbes.kz#?#.watches > span:contains(Поделиться этой публикацией)
quantamagazine.org#?#.post__sidebar__content > div.post__sidebar__content__inner:has(> h3:contains(Share this article))
mechacomic.jp#?##main > section.c-content > div.area_btn_sns:upward(1)
corp.helpfeel.com#?#body > .rebranding__section--last > .w-container:has(> .rebranding__share__buttons)
newsyou.info#?#nofollow > a[href^="https://t.me/joinchat"]:upward(1)
hinode.pics#?##right_wrap > div.right_plugin_wrap:has(> div.right_plugin_body > div#right_plugin_social_buttons_wrap)
kookje.co.kr#?#.news_share_sns > li:has(> a[href^="javascript:send"])
readyfor.jp#?#div[class^="css-"] > ul[class^="css-"]:has(> li[class^="css-"] > a[target="_blank"] > div[class^="css-"] > svg + span)
kankocho.jp#?#.items-hero-action-area > .gaps:has(> .box > button > .v-btn__content > .fa-twitter)
edumap.az##.sidebar > div.widget:has(> ul.social-icon)
vtv.vn#?#.bottom-sharing > li:has(> .facebook-counter)
shopee.ph#?#.product-briefing div.items-center > button[aria-label="Share on Messenger"]:upward(1)
theverge.com#?#div.mb-18:has(> div > h2:contains(Share this story))
kion.ru#?#div.title:contains(/^Поделиться с друзьями$/)
cato.org#?#.field-large-text__label:contains(Share This Topic)
meduza.io#?#.GeneralMaterial-body > div.GeneralMaterial-article > blockquote[class^="SimpleBlock-module_blockquote"]:has(> a[href$="pdf"])
otakustv.com#?#.mb-0 > span.ico-eps:has(> a[href="#VerifyShare"])
masterclass.com#?#span:contains(/^Share$/)
masterclass.com#?#button:has(> span:contains(Share on your network))
inverse.com#?#div[class] > div:contains(Share):upward(1)
beeg.com#?#.content-details__actions-group > button[type="button"][aria-haspopup="true"]:has(> span.v-btn__content > span.XBootstrapIcon > svg[viewBox="0 0 16 16"] > path[d^="M15."])
rmfmaxxx.pl#?#.row > div[class^="col-"] > div.article-social-bottom:upward(1)
porndroids.com#?#.video-footer__share > .video-footer__embed > dd:has(> button.fb-share)
porndroids.com#?#.video-footer__share > .video-footer__embed > dt:has(> strong:contains(Share on:))
novel.prcm.jp#?#.novel-summary__footer > .novel-action > .button-user-action:has(> button > .mat-button-wrapper > .mat-icon:contains(/^share$/))
diariodepernambuco.com.br#?#.d-block > div:has(> strong:contains(no Facebook))
timetreeapp.com#?#.sub2 > div.publicEventShare:upward(1)
naftemporiki.gr#?#.rightContainer > div.Box:has(> div.socialWidget)
hisubway.online#?#.article-content > p > button[onclick^="navigator.share"]:upward(1)
btu.org.ua#?#.sideblock > div.hblock:has(> div[style] > a.twitter-timeline)
showroom-live.com#?#.st-header__menu > li.st-header__item:has(> button[type="button"] > img[alt="Follow"])
displayfusion.com#?#.BoxWrap > .BoxButtons:has(> a[onclick*="//www.facebook.com/"][onclick*="sharer.php"])
openrec.tv#?#div[class^="Component__ButtonGroup"] > div[role="button"]:has(> span[style*="share"])
rinna.co.jp#?#main div[data-ux="Block"] > p[data-ux="Details"]:has(+ svg[data-aid^="RSS_SOCIAL_SHARE_"])
music.apple.com#?#.context-menu--submenu > ul > li[class=" context-menu__option"]:has(> span.context-menu__option-text > span.context-menu__option-text-clamp:contains(/^(Twitter|Facebook)$/))
sex.com#?#div > a[href] > [data-cy-id="share-icon"]:upward(1)
whoreshub.com#?#.tab-buttons > .item:has(> .btn > span:contains(/^Share$/))
karapaia.com#?#.article-body > div[style^="text-align:center;"]:has(> iframe[src^="https://www.facebook.com/plugins/like.php"])
pokemongo-get.com#?#.post_bottom > div + div:has(> div.pg_board_post_button > i.fa.mr-5)
psyche.co#?#div[class^="ideas__SocialShareBarWrapper-"] > div > p:has(> svg[data-cy$="-outline"])
manga1001.club#?#.section.box:has(> .social_share_wrapper)
nhk.or.jp#?#h2:contains(/^SHARE$/)
gorodrabot.by#?#.sidebar > div.sidebar__block:has(> div.block__title:contains(Поделиться с друзьями))
delfi.ee#?#.G-row > div.C-mobile-header__item:has(> div.C-social-tooltip)
lavnik.net#?#.wpb_wrapper > div.td_block_wrap:has(> div.td-block-title-wrap > h4 > span:contains(Пожалуйста лайк, репост))
color-site.com#?##right_navi > div.right_navi01:has(> div.right_navi03 > div.sns_share_box)
kayseriolay.com#?#.bg-slate-100 > .flex > ul > li > a.ssk-facebook:upward(3)
sweet-tv.net#?#td:contains(/^Поделиться:$/)
[$path=/maps]google.*#?#div[class][data-js-log-root]:has(> div[class] > button[jsaction^="pane"] > div[jstcache]:contains(Facebook))
digi24.ro#?#.col-4 > h2:contains(Urmărește-ne și pe)
zakarpattya.net.ua#?##pubMenu > p:has(> img[alt="Share"])
novynarnia.com#?#.home-widget > span.home-widget-header > h3:contains(TWITTER):upward(2)
sensatsiya.com#?#.wpb_wrapper > div.td_block_wrap:has(> div.td-block-title-wrap > h4.td-block-title > span:contains(Читай нас в соцмережах))
sensatsiya.com#?#.wpb_wrapper > div.td_block_wrap:has(> div.td-block-title-wrap > h4.td-block-title > span:contains(Читай нас в соцмережах)) + div.td_block_wrap
comic-walker.com#?#div[role="button"] + div:contains(感想をシェア):upward(1)
style.nikkei.com#?#div[class^="sc-"]:has(> a[href^="https://www.facebook.com/sharer.php"])
24xxx.*,mob.bigbos.name#?##oframeflashcontent > pjsdiv[style]:has(> pjsdiv[style^="position:"]:contains(В ЭФИРЕ)) + pjsdiv
cookpad.com#?#button[type="button"]:contains(レシピを共有):has(> svg)
flightradar24.com#?#.elementor-widget-container > h5:contains(Share this article)
m.bunjang.co.kr#?#div:has(> button[type="button"] > img[alt="페이스북 아이콘"][src^="data:image/png"])
story.tutu.ru#?#.gdlr-core-text-box-item-content > h5:contains(Поделиться):upward(1)
thepythoncode.com#?#div[align="center"]:has(> span:contains(/^Sharing is caring/))
verstka.media#?#main em + a[href="https://t.me/svobodnieslova"]:upward(1)
verstka.media#?#main div[class^="wp-container-"]:has(> h2.verstka-telegram-link:not([style]))
rlx.jp#?#.whiteBg > div.sectionBox:has(> div.inner > div.shearBox)
onlinehacking.in#?#.theiaStickySidebar > div.container-wrapper:has(> div.widget-title > div.the-subtitle:contains(/Follow Us|Telegram Channel|Facebook Page/))
lovindublin.com#?#.justify-center:has(> div.flex-wrap > span:contains(/^Share:$/))
fontanka.ru#?#div[class]:has(> h4:contains(/^ПОДЕЛИТЬСЯ$/))
yakult-swallows.co.jp#?#.post-info > ul.socials:upward(1)
blog.unity.com#?#span:contains(/^Share$/):upward(1)
videohelp.com#?#.rowbackground > b:contains(Share software)
itd.rada.gov.ua#?#.info > div.row > div.col > div.share-box:upward(div.row)
e1.ru#?#div[id="record-header"] > div button[class*=" "] + div[class]:has(> button[class*=" "] > span[class] > svg[width][fill="none"])
wyborcza.pl#?#.social--list > li.social--item:has(> a[class^="social--link"][href^="https://"])
majikichi.com#?##extra > div.column-inner > div.column-inner-2 > div.plugin-memo:has(> .side > center > a[href^="http://cloud.feedly.com"])
hcdinamo.by#?#.sidebar > span:contains(/^Мы в социальных сетях$/)
sakurafile.com#?#.filepanel > tbody > tr > td > ul:only-child > li > a[href^="javascript:share_"]:upward(3)
odysee.com#?#.channel__quick-actions > button[type="button"]:has(> span.button__content > svg[class*="-Share"])
nanjgod.blog.jp#?#.container-inner > nav.section-box:has(> ul > li.article-facebook-share)
nanjgod.blog.jp#?#.article-body + div.article-footer:has(> div.article-social-btn)
academics.de##strong:contains(/^Diesen Job teilen$/)
mobile-review.com#?#p:has(> strong:contains(Поделиться))
yodobashi.com#?#.pDetailCaption:has(> div.pDetailSNS)
mix.tokyo#?#section.m-detailSection:has(> h4:contains(このアイテムをシェアする))
loveran.shop#?#form > section.itemSection:has(> ul.snsBtn)
mangaraw.org#?#.postbody > div.bixbox:has(> span.social)
senmanga.com#?#.content > div.widget:has(> div.widget-body > div.social-btn)
timgate.it#?#.col-span-10 > div.pl-2:has(> div.flex span > img[alt^="facebook"])
log-lio.com,ziimania.com,shabulism.com,obutsumania.com,dopyulism.net,lesbianmania.net,kokikokidouga.com,shikolism.net,chiralism.net,shiwalism.net,pafulism.com,pacolism.net,pushalism.com,appli-me.com,manchome.com,gansyamania.net,moeism.net,pashalism.com#?##footer_sticky_menu td.footermenu_col:has(> i.fa-share-alt)
74.ru#?#button + div:has(> div > div > ul > li > button[data-test="btn-share-vk"])
saiyasune.com#?#div[id]:has(> a.modal-syncer:contains(当サイトはリンクフリーです))
saiyasune.com##span[data-clipboard-text^="最安値.com - ネット通販の価格比較サイト"]
saiyasune.com#?#div[id]:contains(/^▼ このページをシェアする ▼$/)
withonline.jp#?#.pattern_other > div.other-box:has(> ul[class^="share-"])
eda.ru#?#div[class^="emotion-"]:has(> span:contains(/Понравилась статья?|Расскажи о ней друзьям!/))
kp.ru#?#div[class^="sc-"]:has(> div[data-share="share_top"])
kp.ru#?#a[data-subscribe-zen]:upward(1)
zenodo.org#?#.well > h4:contains(Share)
patreon.com#?#div[offset="[object Object]"] div[class^="sc-"]:has(> div[class^="sc-"] > button[type="button"] > div[class]:not([tabindex]):contains(/Share|Поделиться|Del|Teilen|Compartir|Partager|Condividi|Delen|Udostępnij|Compartilhar|Dela|Поділитися|シェア|分享|공유/))
ucrazy.ru#?##crazy-content > div.box > div#ya_share:upward(1)
rai77.com#?##oframeplayer > pjsdiv[style]:has(> pjsdiv[style] > pjsdiv[style] > noindex:contains(Поделиться))
chugai-contents.jp#?#.itemSection > ul.snsBtn:upward(1)
alanam.com#?#.entry-content > div.film-content:has(> div.film-share)
tecstaff.jp#?#.module-text > h3:contains(Instagram):upward(2)
caretobeauty.com#?#.product-view > .box-additional > h4:contains(Share)
caretobeauty.com#?#.product-view > .box-additional > h4:contains(Share) ~ a[href^="javascript:popWin("]
doorblog.jp#?#.content > nav.section-box:has(> ul > li > .line-it-button)
malatyam.com#?#div[class] > div.share-social:upward(1)
ai.facebook.com#?#a[href^="https://www.facebook.com/sharer/sharer.php"]:upward(1)
filmmom.pro#?#.navbar-collapse > div.bloklar:has(> div.icerik > div.d-flex > a[onclick^="share_button("])
livejournal.com#?#div[aria-label="Кнопки социальных активностей"] span[title="Twitter"]:upward(2)
news.ameba.jp#?#ul > li[class^="LowerSocialButtons"]:has(div[class^="TwitterButton"])
news.ameba.jp#?#ul > li[class^="LowerSocialButtons"]:has(div[class^="FacebookButton"])
freac.org#?##rightcol-broad > div.module:has(> div h3:contains(Share))
thairath.co.th#?#.collapse > div[class^="css-"] > a.facebook-icon:upward(1)
meduza.global.ssl.fastly.net,meduza.io#?#div[data-testid] > ul[class^="Toolbar-module_list_"] > li[class^="Toolbar-module_item_"]:has( > button[data-testid="toolbar-button"] > span[class^="ToolbarButton-module_text"]:contains(/Telegram|Телеграм|Фб|Фейсбук|Твиттер|Вк|Ок/))
apexlegends-leaksnews.com#?#.cps-post-main > h2:contains(記事のシェアはこちら)
sonre.ru#?#.single-content > .single-top:has(> .single-top-social)
coder.com#?#a[title^="Share on"]:upward(1)
m.cnyes.com#?#article > footer > div > div.fb-like:upward(1)
fantia.jp#?#.list-group > div.list-group-item:has(> div.share-btns)
timesnownews.com#?#div[class^="ArticleShow-tnn__sticky"] > div[class*="ArticleShow-border"]:has(> p:contains(Share This Article))
pegem.net#?#.banner-policy > .policy4:has(> .social-member)
blognone.com#?#.region-rightbottom-sidebar > div.block:has(> div.content > div.fb-page)
sn-jp.com#?#main > p:has(> span > strong:contains(SNSでシェア))
icotto.jp#?#.c-floating__list > li:has(> span[data-click-area="footer_share"])
informburo.kz#?#footer > div:has(> h4:contains(Поделиться:))
sumaoji.com#?#.textwidget > div.redbox:has(> p > span:contains(この記事をシェア!))
sputniknews.ru#?#.l-sidebar > h4:contains(Следите в Telegram)
news.cookpad.com#?#div.bg-ivory:has(> h2:contains(シェアする))
winticket.jp#?#span + p:contains(記事をシェアしよう)
winticket.jp#?#span + p:contains(記事をシェアしよう) ~ ul
habr.com#?#.tm-company-widgets > section.tm-block > header:contains(ВКонтакте):upward(1)
psychologies.ru##[class*="side-title"]:contains(Psychologies приглашает)
sp.nicovideo.jp##.siteWide-Sheet_Contents > div.siteWide-SheetContent:contains(共有)
colopl.co.jp#?#.content > section:has(> div.cont_base a.twitter-timeline)
melonbooks.co.jp#?#tbody > tr:has(> th:contains(/^シェア$/))
weathernews.jp#?##main > section.block:has(> div#sharing)
shikimori-anime.com##.infoWrap > div.infoInner:has(> div.infoCont > div.twTimelineWrap)
dailystorm.ru#?#div[class^="_"]:has(> div[class^="_"] > div[data-type="share"])
fontanka.ru#?#article + noindex ~ div > div > div:has(> h4:contains(/ПОДЕЛИТЬСЯ/i))
terraria-servers.com#?#div[class^="col-"] > div[class^="mt-"]:has(> h3 > i.fa-share-alt)
nicovideo.jp#?#.siteWide-Sheet_Contents > div.siteWide-SheetContent:has(> span > span.siteWide-ShareIcon)
jinjibu.jp#?#.colored > p:contains(share)
universoformulas.com#?#h4.heading:contains(COMPÁRTELO)
ozon.ru#?#div[data-popper-placement] > div[class] > div[class]:has(> div[class] > button > span > span:contains(/ВКонтакте|Telegram|Facebook|Twitter|Одноклассники/))
qiita.com#?#div[id^="PersonalArticlePage-"] > .p-items_wrapper + div[class^="css-"] > div[class^="css-"] > div[class^="css-"]:has(> .fa-share-alt)
itznaniya.ru#?#h3:contains(/^Поделиться$/)
theins.ru#?##articleContainer > div[class]:has(> div[class] > ul.remove > li > a[href^="//www.facebook.com"])
money.pl#?#div[data-st-area="st-article-reactions"] button[shape="circle"]:has(> svg > circle[cx="4.5"][cy="7.5"][r="2.5"])
comic.pixiv.net#?#.justify-between > .flex > div[class="w-40"]:has(> div > .cursor-pointer > .icon > img[src^="/static/images/share_"])
comic.pixiv.net#?#div[class="screen4:hidden"] > .bottom-16.fixed:has(> .bg-surface1-default > span > img[src^="/static/images/share_"])
onepiece-film.jp#?#.language > span:contains(/^Share$/)
tidal.com#?#.modal-action-list > li.modal-action-wrapper:contains(/Twitter|Facebook/)
journals.lww.com#?#.ejp-article-tools__list > .ejp-article-tools__list-item:has(> .ejp-article-tools__list-button > span > i.icon-share)
enoteca.co.jp#?#.justify-end > .md\:text-left:contains(/^この記事をシェア$/)
ichijin-plus.com#?#main > div[class^="sc-"][class*="sc-"] > div[class^="sc-"]:has(> div[class] a[href^="https://twitter.com/intent/tweet?"])
creators.yahoo.co.jp#?#.ArticleDetail__actionTitle:contains(シェア)
easydoit.ru#?#span:contains(/^Поделиться:$/)
dailynewsagency.com#?#.hilighth3:contains(共有する)
xvideos.com,sexub.com#?##tabShareAndEmbed > h4:has(> span.icf-share)
m.tsargrad.tv#?#noindex > div.article__footer:has(> div.article__share)
jisaku.com#?#.chakra-button[aria-label="Twitterでシェア"]:upward(1)
softexia.com#?#footer > div:has(> iframe[src^="https://www.facebook.com/plugins/like.php"])
lyrical-nonsense.com##.titletop > div.maininfobtmblock:has(div.creditsoctxt)
mardinlife.com#?#.alert > .row > .text-right > span.badge:has(+ a.btn-facebook)
eurodance-music.ru#?##innerbottom > div.grid-box:has(> div.module > div[class^="ya-share"])
dv-gazeta.info#?#.postmetadata:has(> div.google)
politring.com#?#.wrapper > div#body_content + div[class] > div.widget:has(> noindex a[href] > i.fa-vk)
tapple.me#?#.flex-col.py-40.border-b:has(> div > div > button.react-share__ShareButton)
quto.ru#?#.block > div[style] > div[class^="jsx-"]:has(> div[class^="jsx-"] > div.rambler-share)
elamigosedition.com#?#.sidebar > div.side-b:has(> div.side-t > span.fa-thumbs-up)
ua-region.com.ua#?#.cart-company-full > div.d-flex:has(> div.main-info-sharing)
kursk-izvestia.ru#?#.articles > p:has(> strong > a[href^="https://zen.yandex.ru/"])
aldebaran.ru#?#.bwrap > div.item_info:has(> div:contains(/^Поделиться:$/))
mignews.com#?#h6:contains(/^ПОДЕЛИТЬСЯ|^МЫ НА FACEBOOK/)
stirilekanald.ro#?#div[class^="col-"] > div.sidebar.featured:has(> iframe[data-src^="https://www.facebook.com/plugins/"])
feanor184.ru#?#article > div.header_text:has(> h3:contains(Поделиться))
elitedatascience.com#?#.op-footer .col-sm-3 > #custom_html-2 > h2:contains(/^Share$/)
confidenceman-movie.com#?#.share > ul > li.share_t:contains(Share)
httpstatus.io#?#.content-section > div > section:has(> div.hero-body a[data-social-action="share"])
httpstatus.io#?#.navbar-item:has(span:contains(Share))
cmd4win.ru###right > div.moduletable:has(> div.custom > div[align="center"] > div#vk_groups)
twitter.com#?#article > div[class] > div[role="button"]:has(> div[dir="auto"] > span:contains(/^Share/))
indiatoday.in##.social-list > dl > dt:has(> a[title^="share on"])
agroxxi.ru#?#aside > div.justify-content-center > div:contains(/^Посоветовать коллегам$/)
readonepiece.com#?#.container > div[class]:has(> div.flex > a[href^="https://www.facebook.com/sharer/"])
ntv.co.jp##.ntv-aside > div.ntv-box:has(.ntv-box-share)
histmag.org#?##article > div.css-nil > div:contains(Śledź nas!)
histmag.org#?##article > div.css-nil > div:contains(Śledź nas!) + div.shorts
silahilanlari.com#?#.col-md-4 > .advert-header > .advertdetail:has(> .social)
letidor.ru#?#.wrapper ~ div[style^="margin-bottom:"]:has(> div > a[href] > div[class^="jsx-"] p ~ span[href]:contains(Подписаться))
jibunde-esute.com#?#.p-columnDetail > .p-columnDetail__middle--line:has(> .p-snsShare)
barulab.blog.fc2.com##.comment_outline > div.comment_title:contains(スポンサードリンク)
thewikihow.com#?##share > div.row > div[class^="col-"]:has(> div.yandex-share-block)
rus-serial.net#?#.full > div:has(> div.ya-share2)
carnegie.ru#?#.zone-2__item:has(> div.twitter-timeline-widget)
valetudo.ru#?#.v_left > div.moduletable:has(.fb-page)
valetudo.ru#?#.v_left > div.moduletable:has(#vk_groups)
valorant-news.jp#?#.cps-post-main > h2:has(+ .addtoany_share_save_container)
comics.mecha.cc#?##main > section.c-content > h2.c-contentTitle:contains(を共有する)
simplyelizabetholsen.com#?##sidebar > .widget_text:has(> .widget_custom_html > h2 > span:contains(Join us on VK))
opencritic.com#?#app-page-container-right-nav .flex-grow-1 > .text-center:has(> .social-buttons)
opencritic.com#?#app-page-container-right-nav .flex-grow-1 > .text-center:has(> .social-buttons) + hr
yuuu-nii.com##script ~ .hatena-module-title:contains(SHARE)
onmsft.com#?#.entry-content > h3:contains(/^Share This Post:$/)
foxnews.com#?#.amp-share > div.amp-list-item:has(> span:contains(/Facebook|Twitter/))
nerolac.com#?#.blog-details-social > ul.clearfix > li:not(:has(> a.js-bookmark))
aliexpress.ru#?#i[class^="MultiSidebarTab_MultiSidebarTab__socialNetworks__"]:upward(1)
gotovim-doma.ru#?#h3:contains(/^Поделись рецептом/)
ren.tv#?#div[class^="Footer_"] > div[class*="BtnGrpShort_"]:has(> div > div[class^="YShare_"])
boredteachers.com#?#main > div.py-8:has(> div.flex > a.share-network-facebook)
topcoder.com#?#div[class] ~ h3[class]:contains(share)
defkey.com#?#small:contains(/^Share this page on:$/)
my.ua#?#button:has(> span:contains(Поделиться))
24smi.org#?#.row-flex ~ div[class]:has(> div.js-share)
downloadfreecourse.com#?#.sidebar-widget:has(> div.widget-head > h4:contains(Follow Us))
flipkart.com#?#svg + span[style]:contains(Share):upward(1)
privacysavvy.com#?#.nitro-offscreen:has(> div[class] > button[data-sharer])
unews.pro#?##banner > div.RightColumn:has(> div#vk_groups)
unews.pro#?##banner > div.RightColumn:has(> a[href^="http://www.yaplakal.com/"])
cybrhome.com#?#div[class] > div.SocialMediaShareButton:upward(1)
cashfloat.co.uk#?#.dtl > div[class]:has(> div[class] > a[href^="https://www.facebook.com/sharer/"])
icanchoose.ru#?#.landing-head-list:has(> li > a[href*="https://vk.com/share.php?"])
hetmanrecovery.com#?#._post-footer > div.mb-5:has(> h2:contains(Поделиcь))
shop.tastycoffee.ru#?##basket-products > button:has(> .ic-share)
dachnye-sovety.ru#?#main > center:contains(ПОДЕЛИТЕСЬ С ДРУЗЬЯМИ)
gorodche.ru#?#h4:contains(/^Поделиться$/)
codersera.com#?#.elementor-widget-wrap > .elementor-section-boxed:has(> .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap > .elementor-share-buttons--view-icon)
tausendkind.de#?#div.r-icon:contains(/^Teilen$/)
rupprecht.de#?#.article-more-actions > div.well > div:has(> ul.list-group > li > a.social-facebook)
plainenglish.io#?#div[class] > div[class] > button[aria-label^="Share on"]:upward(2)
solvusoft.com##.grid_4 > div.side-box:has(> div#fb-root)
ua-football.com#?#div.show-bottom-name:contains(/^Поделиться с друзьями:$/)
ua-football.com#?#p:contains(/^Поделиться с друзьями:$/)
ariel.co.uk#?#.exp-detail-left > .tips-head + .span12:has(> div[id$="pnlShare"])
okko.tv#?#span:contains(Поделиться:):upward(1)
realdgame.jp#?#.footer-wrap > h5:contains(SNSシェア)
servicesdown.com#?#aside > div.px-3:has(> div.border > a.twitter-timeline)
abplive.com#?#.uk-flex > div[class]:has(> div > a.instagram)
okko.sport#?#button + button:has(> span > i[style^="width: 20px;"][style*="height: 20px;"] > svg > use)
openworldnews.net#?#aside > div.plugin-memo:has(> div.sidetitlebody >div.sidetitle:contains(Twitter))
bnext.com.tw#?#.d-flex > div.txt:contains(分享)
tsn.ua##footer .c-bar:has(> dd > button[data-share])
okko.sport#?#button:has(> span > span:contains(/^Поделиться$/))
futabagumi.com#?#.under_content > h2.accent_header:contains(この記事をシェアする)
freesvg.org#?#.photo-details h4:contains(Share)
myc.news#?#.single-post > div.header-social-block > ul > li:not([class]):has(> a[target="_blank"])
community.nasscom.in#?#.block-system-main-block div.uk-text-center:has(> h4:contains(share this post))
freetutorialsus.com#?##secondary > aside.widget > div.textwidget > a[title^="Free Tutorials on"]:upward(aside.widget)
findstack.com#?#.ct-sidebar .ugb-heading__title:contains(/^Share$/)
parashuto.com#?#.sub.text-center:contains(この記事をシェア)
carrefouruae.com##a[class^="css-"]:has(> span:contains(/^Share$/))
extravelmoney.com#?#aside > section:has(> iframe.twitter-timeline)
blog.kaspersky.co.jp#?#.js-sticky-sidebar-visible > div.c-widget:has(> h5:contains(記事をシェア))
blocksite.co#?#section .elementor-widget-heading > .elementor-widget-container > h3.elementor-heading-title:contains(/^Share$/)
abpeducation.com#?#.art_tag_box > div.art_tag_row:has(> div.collage_list > h2:contains(Share))
indiastudychannel.com#?#.sidebar > div.row:has(> div.item > iframe[src^="https://www.facebook.com/"])
anvil.works#?#aside > h4:contains(Share this)
thehindu.com#?#.aricle-share > li:has(> a:not([href]) > i.fa:not([class*="print"]))
steezy.co#?#div[class^="text-block-"]:contains(Sharing is caring)
novelpia.com#?#span.s_inv > a[onclick^="javascript:window.open('https://twitter.com/intent/tweet?"]:upward(2)
kaspersky.com#?#.js-sticky-sidebar-visible > div.c-widget:has(> nav.c-social-sharing)
m.republicworld.com#?#div[style*="justify-content: space-between; height:"][style*=" width: 100%;"] > div[style^="display: flex; justify-content: space-between;"] > div[onclick^="shareOn"]:upward(2)
novsport.com#?#.rounded-left:has(> div[class] > h1[class]:contains(Facebook))
resolver.co.uk#?#h2:contains(/^Share this:$/)
aeon.co#?#div[class*="SocialShareBar"] p:has(> span:contains(/^Tweet$|^Share$/))
brain.com.ua#?#.br-pr-share:upward(1)
alvaromontoro.com#?#.side-bar > section:has(> h2:contains(/^Share$/))
javatpoint.com#?#.onlycontentinner > hr.hrhomebox + h2:contains(/^Help Others, Please Share$/)
javatpoint.com#?#.onlycontentinner > hr.hrhomebox:has(+ h2:contains(/^Help Others, Please Share$/))
14.ru,116.ru,154.ru,161.ru,164.ru,178.ru,26.ru,29.ru,35.ru,42.ru,43.ru,45.ru,48.ru,51.ru,53.ru,56.ru,59.ru,60.ru,62.ru,63.ru,68.ru,70.ru,71.ru,72.ru,74.ru,75.ru,76.ru,86.ru,89.ru,93.ru,e1.ru,ekat.ru,irkutsk.ru,kbs.ru,mgorsk.ru,ngs.ru,ngs22.ru,ngs24.ru,ngs38.ru,ngs42.ru,ngs54.ru,ngs55.ru,ngs70.ru,nn.ru,omsk1.ru,proizhevsk.ru,provoronezh.ru,sochi1.ru,sterlitamak1.ru,tolyatty.ru,ufa1.ru,v1.ru#?#div[id] div[class] > div[class] > p[class]:contains(Поделиться)
14.ru,116.ru,154.ru,161.ru,164.ru,178.ru,26.ru,29.ru,35.ru,42.ru,43.ru,45.ru,48.ru,51.ru,53.ru,56.ru,59.ru,60.ru,62.ru,63.ru,68.ru,70.ru,71.ru,72.ru,74.ru,75.ru,76.ru,86.ru,89.ru,93.ru,e1.ru,ekat.ru,irkutsk.ru,kbs.ru,mgorsk.ru,ngs.ru,ngs22.ru,ngs24.ru,ngs38.ru,ngs42.ru,ngs54.ru,ngs55.ru,ngs70.ru,nn.ru,omsk1.ru,proizhevsk.ru,provoronezh.ru,sochi1.ru,sterlitamak1.ru,tolyatty.ru,ufa1.ru,v1.ru#?#p[itemprop="author"] + div > div > p:contains(Поделиться)
clipchamp.com#?#header + article > div[class^="sc-"] > div[class] > div[class]:contains(Share this post)
earlysalary.com#?#div[class^="jss"]:contains(/^Share us on:$/)
earlysalary.com#?#div[class^="jss"]:has(> button.react-share__ShareButton)
brandwatch.com#?#.mx-auto div.pb3:has(> h5:contains(Share))
techulator.com#?#iframe[src^="https://www.facebook.com/plugins/"]:upward(1)
keyhero.com#?#.alert:has(> h4:contains(Share this page))
computerhope.com#?#div[id^="column"] > h2:contains(Follow Us)
sport-tv-guide.live#?##channelInfo ~ .hr-sect:has(+ .text-center > .social)
navbharattimes.indiatimes.com#?#.icons-section > span.dateline:has(> div.icons-section a[onclick^="gtmTrakerevenst('share'"])
cashify.in#?#.frame-size .layout > .web-view > .horizontal.center-center > span.MuiTypography-colorTextPrimary:contains(/^Share:$/)
brightside.me#?#div[data-test-id="top-action-bar"] > div[class]:has(> svg > use[href="#share"])
brightside.me#?#div[data-test-id="bottom-action-bar"] + div[class] > div[data-test-id="bottom-sharing"]:upward(1)
limon.kg#?##news_list div.row > div.col-12:has(> div.d-flex > div.social-icons)
thedubrovniktimes.com#?#.t3-sidebar > .title-arrow:has(> .module-inner > .module-ct > .fb-like-box)
wakibungu.com#?#.st-aside > h3:contains(記事をシェア)
valorantchannel.livedoor.blog#?#.left-column-inner > div.plugin-memo:has(> div.sidetitlebody > div.sidetitle:contains(Twitter))
topresume.com#?#.article-share-icons > .container > .col > p:has(+ .social-icons)
algemeiner.com#?#.widget_mostreadwidget ~ div.widget:has(> h2:contains(Facebook))
noticialdia.com#?#ul[class^="widgets"] > li.widget:has(> div.textwidget > div.fb_iframe_widget)
ileilgili.org#?#.col-sm-9 > legend:contains(/^Sosyal Medyada Paylaş$/):has(+#socialShare)
safezone.cc#?#.resourceBody-sidebar > div.resourceSidebarGroup:contains(Поделиться ресурсом)
hdfilmcehennemi.*#?##sidebarNav > .card > .card-header > span:contains(/^Paylaş$/):upward(2)
horecatrends.pl#?#.art3 > .tabs-1> .navi > h3:contains(/^SOCIAL MEDIA$/):upward(2)
horecatrends.pl#?#.right > .tabs-1> .navi > h3:contains(/^SOCIAL MEDIA$/):upward(2)
hackerearth.com#?#.float-right > .right-container > .right-box > h2.title:contains(/^Social Share$/):upward(1)
versiya.info#?#div[class="sidebar"]:has(> div#fb-root)
topdocumentaryfilms.com#?#.movie > article > div[class="module"] > .share-text:upward(1)
aha-music.com#?#.ant-card-contain-grid:has(> div.ant-card-head:contains(Share to))
newslaundry.com#?##container div[class] > ul[class] > li > a[href^="https://www.facebook.com/sharer.php"]:upward(2)
anadoludabugun.com.tr#?#section[class^="share-block"] > header[class]:contains(PAYLAŞ)
m.winfuture.de#?#body > #topnewscontent ~ .teaser ~ .text:has(> div > a[class^="social_link_"])
matomo.org#?#.elementor-heading-title:contains(Share this post)
mcqmate.com#?#div[class^="col-"] > div.card > h6.card-header > i.fa-share:upward(div.card)
anime-thai.com#?#.col-lg-3 > .row > .mb-3 > .card > .card-body2 > .fb-page:upward(2)
romskingdom.com#?#span:has(> a[href^="https://www.facebook.com/sharer/"])
tiermaker.com#?##footer > div > h5:contains(/^Follow$/)
eadaily.com#?#.latest-block > div.side-announcement:has(> div.fb-page)
eadaily.com#?#.latest-block > div.side-announcement:has(> div#ok_group_widget)
eadaily.com#?#.latest-block > div.side-announcement:has(> div#vk_groups)
bookz.ru#?#.b_block > h2.h2caption:contains(Поделиться)
cheatcc.com#?##sidebar > .side-box > .top > div:contains(/^SHARE THIS PAGE$/):upward(2)
shakko.ru#?#div[aria-label="Кнопки социальных активностей"] span[title="VKontakte"]:upward(1)
numberone.com.tr#?#.social-box > div.boxed > a.twitter-timeline:upward(1)
numberone.com.tr#?#.social-box > div.boxed > iframe[src^="https://www.facebook.com/plugins/"]:upward(1)
tutflix.org#?#.resourceSidebarGroup-title:contains(Share)
news.cision.com#?#.container-card > div.card-information:has(> div.pad > div[data-uri*="FeedSource=Twitter"])
pekcazip.com#?#h3:contains(Paylaş)
teenink.com#?#.actions > label:contains(/^Share$/)
colorlib.com#?#.wpex-fa-social-widget:upward(1)
fishki.net#?#.question > div.text-center:has(> div.big-share)
fastly.com#?#.promo-box > div.promo-box__item:has(> div.social-links)
unesco.de#?#.module-group__column > div.module:has(> h3.module__headline > span.icon-twitter)
discudemy.com##section[class="thirteen wide column"] > div[class="ui attached segment"]:has(> div#shareIconsCounter)
edutopia.org#?##articleFooter h3.section-heading--small:contains(/^Share This Story$/)
activistpost.com#?#aside[class$="sidebar"] > div.sb-widget:has(> h4.widget-title > span:contains(/Contact Us/))
vlchelp.com#?##secondary aside.widget div.g-ytsubscribe:upward(aside.widget)
freenulledworld.com#?##sidebar > div.row:has(> div[class] h4.title:contains(Follow Us))
tokyo-np.co.jp#?#.cmp-misc003:has(> div > div > div > a.js-sns)
pro-palliativ.ru#?#.panel > div.panel-block:has(> span:contains(Поделиться))
cinema.dinamalar.com#?##selContentright > div[align="center"]:has(> div > div.sharethis-inline-share-buttons)
economictimes.indiatimes.com#?#.shr_head:contains(Share)
viva.ua#?#.sidebar-itm > div.sb-tabs:has(> div.sb-tabs-panels > div.sb-tabs-panel > iframe[src^="https://www.facebook.com/plugins/page.php?"])
viva.ua#?#.main-content > div.article-footer:not(:has(> div.article-tags))
super.ru#?#div[class] > span[class]:contains(ПОДЕЛИТЬСЯ СТАТЬЕЙ):upward(1)
icon-icons.com#?#div.btn-group:has(> button.dropdown-toggle > i.myicons-share)
todayifoundout.com#?#td[style] > strong:contains(/^Share/)
419.consulting#?#main[data-ux="BlogMain"] > div[data-ux="Block"] > p[data-ux="Details"]:contains(/^Share this post:$/)
sektekomik.com#?##sidebar > .section:has(> .easy-facebook-like-box_box)
vibez.pl#?#svg[aria-labelledby="share"]:upward(1)
fontanka.ru#?#section[itemprop="articleBody"] span[class] > img[alt="Поделиться"]:upward(1)
fontanka.ru#?#article[itemscope] ~ div[class]:has(> div[class] h4 + div > ul[class] > li[class] > a[href^="https://instagram.com/"][href$="_share"])
sonperiyot.com#?#.td-ss-main-sidebar > aside:has(> h4 > span:contains(Twitter Sayfamız))
prosieben.de#?#.video-action:has(> span.video-action-share-icon)
bunte.de#?##share-menu > div:has(span:contains(Teilen))
gadgetsnow.com#?#div[data-articlemsid] div[class]:has(> span[class]:contains(Facebook))
wmj.ru#?#.wrapper + div.headline:contains(Расскажите друзьям)
diariodocomercio.com.br#?#.elementor-column-wrap > div.elementor-widget-wrap > div.elementor-widget-heading:has(> div.elementor-widget-container > h2:contains(COMPARTILHE))
29.ru#?#.central-column-container div > p[class]:contains(Поделиться)
kriminal.net.ua#$?#body > div#popup-manager:has(> div > div.nyroModalCont > div.nyroModalDom > div.socialwdin) { remove: true; }
speedtest.net#?#.posts > .row > .col-xs-4 > .widget-inline > h2.widget-title:contains(/^Share$/)
trybotics.com#?#.MuiCardActions-root > button:contains(Share)
cartoonews.ru#?#.sideBar h2.recomended:contains(/^подпишись в instagram$/)
caclubindia.com#?#h1 + div.row > div[class] > div#details_share:upward(1)
poebuilds.net#?##Cntnr0inlineContent-gridContainer > .txtNew > h2.font_2:has(span:contains(SUBSCRIBE ON YOUTUBE))
koravidstream.com,marianne.net#$?#.rmp-sharing { remove: true; }
meleklermekani.com#?#.p-body-pageContent > div.blockMessage:has(> div.shareButtons)
at.webry.info#?#.bookmark:has(.webry-simple-sbm)
astar.bz,anistar.org,online-star.org,online-stars.org#?#.content-pravo > div.news-list:has(> div.title-3 > span:contains(Мы ВКонтакте))
fontanka.ru#?#section > div > article[itemtype="http://schema.org/NewsArticle"] + div[class] > div[class] > div[class]:has(> h4:contains(ПОДЕЛИТЬСЯ))
winaero.com#?#.share:has(> p:contains(Share this post))
hotcleaner.com#?#button:not([title]):contains(/Reddit|Twitter|Facebook|Skype|Telegram/)
wiesbadenaktuell.de#?#div[class^="inside"] > .news-container:has(> div > center > iframe[src^="http://www.facebook.com/plugins/likebox.php"])
codeproject.com#?#h2:contains(Share)
commaful.com#?#.float-right > a:contains(Share)
sravnismart.ru#?#h3.widget-title:contains(Поделиться ссылкой:)
ardahanhaberi.com#$?#.SocialTools > ul > li:not(:has(> a[href^="javascript:"])) { visibility: hidden !important; }
rambler.ru#?#div[data-blocks^="cluster_"] div[class]:has(> div[data-rambler-share])
mshowto.org#?#.theiaStickySidebar > aside:has(> div.textwidget > center > a[href^="https://www.linkedin.com/in/mshowto/"])
lamoda.ru#?#.ii-product__aside-wrapper > div.vue-widget:has(> div[class] > div:contains(Поделиться))
down.mdiaload.com,down.fast-down.com#?#tbody > tr div.share:upward(2)
kinopoisk.ru#?#div[class^="styles_contentContainer__"] > section > h3:contains(Поделиться)
gadgetsnow.com#?#div[id^="slides_"] > p + div[class]:has(span:contains(Twitter))
hrej.cz#?#.odsazene > .social:upward(1)
hrej.cz#?#.post-header-info__content > span:last-of-type:contains(/^Sdílej:$/)
poradu.pp.ua#?#b:contains(Поділитися з друзями)
pttavm.com#?#.image-box > div.justify-center:has(> div.items-start > a.share-network-twitter)
washingtontimes.com#?##secondary > div.aside-inner > section:has(> div.block-content > figure > a.twitter-timeline)
malavida.com#?#.sidebar > section:has(> div.social > a#share-twitter)
bhaskar.com,divyabhaskar.co.in#?#.react-share__ShareButton:upward(2)
kontrakty.ua#?##sideRight > div.shadow:has(> h6:contains(Мы в соцсетях))
radiorecord.ru#?#div:has(> .ya-share2)
grammarly.com#?#main > div[class$="-post"] > div[style][class*="-container"]:has(> div[class$="-icon"] > img[src$="facebook.svg"])
futurism.com#?#main > div > div.text-center:has(> div.flex > button.react-share__ShareButton)
zonarutoppuden.com#?#.capitulos_left > div.descrip_title:contains(Compartelo)
zonarutoppuden.com#?#.capitulos_left > div.descrip_title:contains(Compartelo) + div.descripbox
cacm.acm.org#?#.fav_bar > span:contains(/^Share:$/)
weatherford.com#?#.rich-text > div[style^="padding:"] > p > a[href$="shareCurrentPage()"]:upward(1)
rojadirectatv.pro#?#div.encabezados:has(> h3:contains(Compartenos))
pirlotvonlinehd.com#?#div.encabezados:has(> *:contains(Compartanos))
polygamia.pl#?##main-content div[class*=" "] > div[class*=" "][role="button"] > div > svg[fill="none"][stroke-width="2"]:upward(2)
psyjournal.ru#?#.sidebar > div.block:has(> h2:contains(Мы в соцсетях))
thepalmierireport.com#?##secondary > div.widget:has(> div.textwidget > div.fb_iframe_widget)
tkrasnodar.ru#?#.elementor-widget-wrap > div.elementor-element:has(> div.elementor-widget-container > div.elementor-shortcode > div#sb_instagram)
kod.ru#?#.post > h5:contains(Поделись)
find.com.tr#?#.sidebar > div.sidebox:has(> div.text-center > div.addthis_inline_share_toolbox)
whotwi.com#?#.sidebar_item > div.social_buttons:upward(1)
speed-down.org#?#table > tbody > tr:has(> td > div.share)
apkmirror.com#?##sidebar > div.listWidget:has(> h5:contains(Follow APK Mirror))
android.jlelse.eu,codeburst.io#?#div:has(> a[href*="/share/twitter?source="]) + div:has(> button > svg > path)
mundowuxia.com#?##main-sidebar > div.widget_text:has(> div.widget > div.widget_text > div.widget-heading > h5:contains(Síguenos para no perder de nada))
geekbench.com#?#.geekbench-nav > li.nav-header:contains(Share)
gamedev.net#?#.justify-content-end > span.mr-2:contains(/^Share:/)
ladbible.com#?#a[href] + h1 ~ button > span:contains(/^Share|Tweet$/):upward(1)
pelismart.com#?#.vc_col-has-fill > .vc_column-inner > .wpb_wrapper > .wpb_text_column > .wpb_wrapper > .eapps-social-share-buttons:upward(3)
hetmanrecovery.com#?#._post-footer > div._post-footer__tags ~ div[class]:has(> h2:contains(Поделиcь))
hetmanrecovery.com#?#._post-footer > div._post-footer__tags ~ div[class]:has(> div._share)
ntower.de#?#article#news + section.jsOnly > h2:contains(/^Teilen$/)
psychologies.ru#?#.aside-title:contains(Psychologies в cоц.сетях)
calculate.plus#?#.col-xs-12 > .panel-application > .panel-body > .social-share:only-child:upward(2)
kaspersky.ru#?#.js-sticky-sidebar-visible > div[class="c-widget"]:has(> h5:contains(Поделиться))
eg.ru#?#.article div[id][onclick]:has(> i[class$="fa-share-square"])
litmir.me#?#table > tbody > tr:has(> td > a[href^="/ShareLink/"])
litmir.me#?#table > tbody > tr:has(> td > span:contains(Поделиться))
namemc.com##.row > div.col-xl-4 > div.card:has(> a.twitter-timeline)
ilovepdf.com#?#.container > div[class]:has(> div.card div.share)
buildcomputers.net#?##ContentColumn > .Liner > div[style="width: 100%; box-sizing: border-box"] > h2:contains(/^Like and Share$/):upward(1)
money.pl#?#article > div[class*=" "] > div[id^="part"] > button > span:contains(/^Podziel się$/):upward(1)
softportal.com#?#.cardPageLinks > div.Menu2ETd:has(> a[onclick^="showShare"])
e1.ru#?#p[class]:has(> svg[width="20"][height="15"]):contains(Поделиться)
steamcommunity.com#?#div[class^="partnereventshared_Button"]:has(> span[class]:contains(Поделиться))
mirsmart.com.ua#?#.condel > div.delivery:has(> div[style]:contains(Поделиться))
mschistota.ru#?#.share > div.row > div.col-md-6 > div:contains(Поделитесь)
javmost.com#?#.row ~ h4.text-warning:contains(SHARE)
javmost.com#?#.row ~ h4.text-warning:contains(SHARE) + table.table-bordered
sanarmed.com#?#button[mode] + div:has(> button > i.icon-whatsapp-linear)
chebo.pro#?#.p_bold > span.rating:contains(Поделитесь)
descargaspcpro.net#?##sidebarbtop > div.widget:has(> div.widget-content > div.fb-page)
chudesa.site#?#.sidebar-content > div.widget:has(> div.textwidget > div.fb-page)
chudesa.site#?#.sidebar-content > div.widget:has(> div.textwidget > div[data-href^="//plus.google.com/"])
chudesa.site#?#.sidebar-content > div.widget:has(> div.textwidget > a.twitter-follow-button)
nv-online.info#?#.td-post-content > h4:contains(Поделиться)
autoua.net#?#.single-post > div.l-container:has(> div[class] div.social-likes)
xxxbunker.com##.video-toolbar > button:contains(Share)
kotaku.com#?#.js_post-content ~ div > div > h4:contains(Share This Story)
tverigrad.ru#?##center_column + div[class] > div > div[class]:has(> div[id] > div[class] b:contains(/Твериград\s[в\s]?(\sFacebook|Вконтакте)/))
oddschecker.com#?#div[data-regression-tag="article-text-block"] ~ div[class]:has(> div[class] > a[class][title="WhatsApp"])
timebucks.com#?#div[class^="col-"] > div.widget-container:has(> div.fb_iframe_widget)
horki.info#?#.region-inner > div.block:has(> div.block-inner td > a[href="https://t.me/horki_info"])