If You Want top backlinks or free guest posting on our blog Lets do it Adsense Ready theme Now!

Prevent copying in Blogger with popup warning

Welcome again, a talk earlier about this plugin, how to protect your template from the Inspect element.



Welcome again, a talk earlier about this plugin, how to protect your template from the Inspect element.

In this version, I will direct you to create a text warning window when users right-click on the page. Nice trick, isn't it? To get a better picture, watch the preview demo!
Explanation of the installation method
1. Log in to your blog
2. Appearance >> Edit HTML
3. Search for ]]> </ b: skin> and put the following code on top
ul.contextMenu {
 background: #fff;
 text-align: center;
 margin: 0;
 padding: 10px 20px;
 border-radius: 100px;
 color: #ff6460;
 box-shadow: 0 0 70px rgba(0, 0, 0, .25);
 font-family: "Roboto Condensed", sans-serif;
 font-weight: 700;
 font-size: 24px;
 z-index: 999999;
 position: fixed;
 top: 50%!important;
 left: 50%!important;
 transform: translate(-50%, -50%);
 pointer-events: none
}
4. Add this code above </body>
<ul class='contextMenu' hidden='1'>STOP 💣</ul>
<script type='text/javascript'>
// Right click miusm-tech
$(document).bind(&quot;contextmenu&quot;, function(event) {
event.preventDefault();
$(&quot;ul.contextMenu&quot;)
.show(); 
});
$(document).click(function() {
isHovered = $(&quot;ul.contextMenu&quot;).is(&quot;:hover&quot;);
if (isHovered == false){
$(&quot;ul.contextMenu&quot;).fadeOut(100);
}
});
</script> 
* You can add any message instead of STOP 💣

Post a Comment

Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.