رت في الآونة الأخيرة مسألت النسخ والصق في المدونات والمنتديات , وللأسف لايوجد مصدر ؟ بحيث انه يتم النسخ بدون ذكر المصدر وهذا ظلم كبير لصاحب الموضوع .
اليوم بأذن الله أتيتكم بـ 3 أكواد أحترافية ستحمي مدونتك من مسألة النسخ واللصق وستكتب ماتشاء دون ان تخاف ان يسرق موضوعك وينسب الى غيرك .
وضائف الأكواد الثلاث :
الكود الأول : تعطيل CTRL + U وهي صفحة السورس او المصدر .
الكود الثاني : تعطيل كلك يمين ( زر الفأرة الأيمن ) .
الكود الثالث : تعطيل او منع النسخ .
طريقة التركيب :
ادخل مدونتك .
القالب .
حرر القالب .
انسخ الأكواد والصقها اسفل </body> , او يمكنك إضافتها في أداة هتمل .
الكود الأول :
<!-- High Security by Geekrach.blogspot.com-->
<script type="text/javascript">
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==2)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
var isCtrl = false;
document.onkeyup=function(e)
{
if(e.which == 17)
isCtrl=false;
}
document.onkeydown=function(e)
{
if(e.which == 17)
isCtrl=true;
if((e.which == 85) || (e.which == 67) && isCtrl == true)
{
// alert(‘Keyboard shortcuts are cool!’);
return false;
}
}
</script>
الكود الثاني :
<SCRIPT LANGUAGE="JavaScript1.1">
<!-- HIGH SECURITY Geekrach.blogspot.com -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!!
http://javascript.internet.com -->
<!-- Begin
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert(".:H.I.G.H.S.E.C.U.R.I.T.Y:.");
return false;
}
return true;
}
document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
// End -->
</script>
الكود الثالث :
<!-- High Security by Geekrach.blogspot.com-->
<SCRIPT>
return false;
}
function noleftclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 1)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu;
document.onmousedown = noleftclick;
</SCRIPT>
اتمنى أن ينال الموضوع اعجابكم وشكرا
- See more at:
http://www.el3lamya.com/2013/08/3.html#sthash.AIlYzitm.dpuf