Translate

Code Chống Copy Trong Blogspot


PHẢI NHÚNG VÀO TEMPLATE BLOGSPOT Chủ nhân Blogspot không thích đọc giả copy bài viết của mình thì sử dụng cái Code này để nhắc nhở rằng quyền riêng tư không cho copy.
Thứ này chỉ để chọc ghẹo Newbie không hiều chuyện đi copy về đăng lại cho có thôi. Đối với những Blogger thì vấn đề copy họ không thèm quan tâm nữa. Không có một ai đụng đến tin học mà không đi copy lần nào.
Dân chuyên đa phần khi đọc thấy thích thì bookmark lại bài viết đó để khi cần xem lại thôi.
Đôi khi họ muốn thì sẽ viết một bài của chính họ hay share để link source là bị không vi phạm bản quyền.
CODE sưu tầm đây các bạn
( lưu template trước khi vọc phá nhé , tạo cái blog mới vọc phá cho chắc.)

1. Đăng nhập vào Design
2. Chọn template, vào chỉnh sửa Edit HTML
3. Dùng cú pháp tìm kiếm tìm và dán code vào trước thẻ
4. Tìm thẻ này</head>, sau đó dán code vào trước thẻ đó lưu lại là xong.

Code chống quét khối 
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>

Những code khác, nếu muốn sâu hơn thì dùng Code sau:

KHÔNG CHO CHUỘT PHẢI
<script language="JavaScript">
var msg="Lỗi chuột";
function disableIE() {if (document.all) {alert(msg);return false;}
}
function disableNS(e) {
if (document.layers||(document.getElementById&amp;&amp;!document.all)) {
if (e.which==2||e.which==3) {alert(msg);return false;}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);document.onmousedown=disableNS;
} else {
document.onmouseup=disableNS;document.oncontextmenu=disableIE;
}
document.oncontextmenu=new Function("alert(msg);return false")
</script>

KHÔNG CHO TRANG RIÊNG
<b:if cond="data:blog.url == &quot;https://liemnguyenngoc.blogspot.com/p/b.html&quot;">
<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>


KHÔNG CHO TRANG LƯU TRỮ
<b:if cond="data:blog.pageType == &quot;archive&quot;">
<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
</b:if>

KHÔNG CHO TRANG TĨNH
<b:if cond="data:blog.pageType == &quot;static_page&quot;">
<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
</b:if>

Soure Internet

No comments: