Что такое блокировка AdBlock на моем сайте?

590
MD XF

Читая мою веб-страницу, я заметил, что AdBlock блокирует один элемент. У меня, конечно, нет рекламы. Вот весь источник:

<!DOCTYPE html> <html> <head>  <title>Stack Overflow Comments</title> <link rel="shortcut icon" href="/favicon.png" />  <meta name="description" content="Handy comments to use on Stack Overflow" /> <meta name="author" content="Ryan Klingler" /> <meta name="keywords" content="Stack,Overflow,Ryan,comments" />  </head> <body style="line-height: 150%; background-color: #d3d3d3"> <h1>Handy Stack Overflow Comments</h1>  <strong>Bad code (sarcastic)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" class="field left" value="You should look into [proper C formatting](//prohackr112.tk/pcf). Or learn how to [thoroughly obfuscate your code](//prohackr112.tk/guide/coding/proper-c-obfuscation)." readonly>  <strong>Bad code (helpful)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" value="You should [properly format your code](//prohackr112.tk/pcf). Using proper formatting attracts people to your question and encourages them to help you." class="field left" readonly>  <br><strong>Missing MCVE (new user)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" value="Welcome to Stack Overflow! Please see [How to create a Minimal, Complete, and Verifiable Example](/help/mcve)." class="field left" readonly>  <strong>Missing MCVE (not-so-new user)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" class="field left" value="Please see [How to create a Minimal, Complete, and Verifiable Example](/help/mcve)." readonly>  <strong>Missing MCVE (no code provided)</strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" class="field left" value="Please post your code. But first, see [How to create a Minimal, Complete, and Verifiable Example](/help/mcve)." readonly>  <strong>Complete "gimme teh codez" question<strong> <input type="text" style="width:100%; font-family: monospace;" onfocus="this.select();" class="field left" value="&quot;Gimme teh codez!!1&quot; - &quot;No.&quot;" readonly>  </body> </html> 

Что делает AdBlock?

-1
Какой элемент заблокирован? AFH 7 лет назад 0

1 ответ на вопрос

1
J C

Перейти к источнику просмотра: http://prohackr112.tk/r/stack-overflow-comments

Внизу вы видите

<!-- Hosting24 Analytics Code --> <script type="text/javascript" src="http://stats.hosting24.com/count.php"> </script> <!-- End Of Analytics Code --> 

Вот что блокируется: http://stats.hosting24.com/count.php

Чтобы увидеть, что заблокировано в Google Chrome, нажмите F12и нажмите «рекламный блок»

Чтобы увидеть, что заблокировано в Firefox, нажмите на значок рекламного блока и нажмите «открыть блокируемые элементы»

Хост вводит код на вашу страницу. Связанный: http://stackoverflow.com/questions/2268868/ Yorik 7 лет назад 0