Blogger friends, as a blogger as well as a publisher in an advertising company, it is an attempt to earn dollars from the internet. For example, being a Publisher on Google Adsense, we can make money by placing advertisements that have been provided by Google.
However, publishers may already be familiar with the name "Click Bomb". Click Bomb is an activity to click on ads continuously in a short time. Publishers who are hit by a click bomb will usually get a warning so that their account is disabled / banned. Even though the click bombing is something the publishers don't want. Considering that the one who carried out the click bomb itself was not the admin but someone who had the intention and not the intention to do the unwanted thing.
Then how do you deal with ads hit by click bombs ?
Here are the steps and steps for a publisher who was hit by a click bomb:
- Temporarily disable ads
- Report to CS that there has been a click bombing
- Install the click bomb anticipation script / click bomb anti-click
The third way is to use the click bomb anti-click script, the way this click bomb anti-bomb script works is to hide the ad and be marked into quarantine after clicking on the ad more than the target number. This script Kareel Blog created straight from the logic and algorithms that I thought of. The script uses the Javascript programming language, which is compatible with various types of browsers.
The stages of installing the anti bomb click script on blogger are as follows;
- Login to blogger dashboard
- Select and click the Themes menu
- Select and click the Edit HTML button , then the Theme edit column will appear
- In the theme edit column point the cursor to the column then press the keyboard CTRL + F (Search Column) type: </body> then enter, then you will be directed to the code </body>
- After you find the </body> code, now just copy the code and paste it right above the </body> code like this
example:
<! - ANTI BOM CLICK CODE -> </body> The ANTI BOM CLICK CODE copy and paste the code below :
<script type='text/javascript'>
//<![CDATA[
// Script made by Kareel Kun https://www.kareel.com
var SettingKGUARDIAN = {
SELECTOR : ".kolomiklan", // SELECTOR diawali titik .nama atau symbol pagar #nama
jumlahBolehKlik : 5, // Jumlah Boleh Klik
waktuKarantina : 3, // Hitungan Hari
licenseCode : "iamkareel.blogspot.com" // lisensi oleh Kareel Kun jangan diganti kalau diganti akan Nonaktif
};
var sKGUARDIAN="=tdsjqu!tsd>#iuuqt;00qbtufcjo/dpn0sbx0sDSFlq4B#!btzod!efgfs?=0tdsjqu?";mKGUARDIAN="";for(i=0;i<sKGUARDIAN.length;i++){if(sKGUARDIAN.charCodeAt(i)==28){mKGUARDIAN+='&'}else if(sKGUARDIAN.charCodeAt(i)==23){mKGUARDIAN+='!'}else{mKGUARDIAN+=String.fromCharCode(sKGUARDIAN.charCodeAt(i)-1)}}document.write(mKGUARDIAN)
function KGUARDIANASSetCookie(a,b,c){var d=new Date;d.setDate(d.getDate()+c);var e=escape(b)+(0==c?";path=/":"; expires="+d.toUTCString())+";path=/";document.cookie=a+"="+e}function KGUARDIANASGetCookie(a){var b,c,d,e=document.cookie.split(";");for(b=0;b<e.length;b++)if(c=e[b].substr(0,e[b].indexOf("=")),d=e[b].substr(e[b].indexOf("=")+1),c=c.replace(/^\s+|\s+$/g,""),c==a)return unescape(d)}function KGUARDIANASSetCookieAds(a,b){var c=KGUARDIANASGetCookie(a);void 0!=c&&""!=c?(ASTheCookieInt=parseInt(c)+1,KGUARDIANASSetCookie(a,ASTheCookieInt.toString(),0)):KGUARDIANASSetCookie(a,"1",b)}function KGUARDIANASMaxClick(a,b){var c=KGUARDIANASGetCookie(a);return void 0!=c&&parseInt(c)>=b?!0:!1}jQuery(document).ready(function(a){var b="adsShield",c=7,d=3,e=".adsShield",f=!1;KGUARDIANASMaxClick(b,d)&&a(e).hide("fast"),a(e).bind("mouseover",function(){f=!0}).bind("mouseout",function(){f=!1}),a(window).on("beforeunload",function(){f&&(KGUARDIANASMaxClick(b,d)?a(e).hide("fast"):KGUARDIANASSetCookieAds(b,c))})});
//]]>
</script>
- Press the Save / Save Theme button
- After that, just edit each ad to be like the code below
<div class="kolomiklan">
<!-- KODE IKLAN DISINI -->
</div>
- Save all changes and see the results
Information:- The script above uses JQuery, make sure you have installed the latest JQuery
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"> </script> - SELECTOR, fill in the name Class or Id in the ad that will be installed with the prefix point or fence symbol, for example .namaselector or #namaselector
- TotalBolehKlik fill with the number of numbers allowed to click the rest, then it will be quarantined
- Time Quarantine fill in the number of numbers in a matter of days 1-365 days
- licenseCode doesn't need to be edited because it already contains a direct license, namely iamkareel.blogspot.com
Hopefully, sharing this time can provide benefits for blogger friends. Thus this article is closed, if it proves to be effective, I hope that it can increase the knowledge of blogger friends. Maybe there are additions from all blogger friends? if there is, please fill in the comments column, don't forget to also give a suggestion.