» Bắt đầu thủ thuật
1. Đăng nhập vào tài khoản Blogger
2. Vào phần mẫu (Tempalte)
3. Chọn chỉnh sửa HTML (Edit HTML)
4. Bạn tìm đến thẻ <body> và thay nó thành 1 trong 2 đoạn Script sau
A. Javascript xuất hiện nhiều tab mỗi khi click chuột
<body onclick='open_popup()'>
<script type='text/javascript'>
/* <![CDATA[ */
function open_popup() {
window.open("http://khoinghiepinternet.blogspot.com/")
window.open("http://makemoneywithamazontips.blogspot.com/")
window.open("http://khoinghiepinternet.blogspot.com/2015/09/huong-dan-kiem-tien-voi-accesstrade.html")
}
/* ]]> */
</script>
- Trong đó thay các trang màu đỏ thành các trang bạn muốn.
Để thêm một cửa sổ Popup bạn thêm đoạn code sau:
window.open("http://khoinghiepinternet.blogspot.com/")
B. Javascript xuất hiện popup khi click chuột lần đầu tiên.
<body onclick="vtlai_popup();">
<script language="javascript">
/* <![CDATA[ */
var sinhvienit=0;
function SVIT_ADS_GetCookie(Name){
var re=new RegExp(Name+"=[^;]+", "i");
if (document.cookie.match(re))
return decodeURIComponent(document.cookie.match(re)[0].split("=")[1]);
return ""
}
function SVIT_ADS_SetCookie(name, value, days){
if (typeof days!="undefined"){
var expireDate = new Date()
var expstring=expireDate.setDate(expireDate.getDate()+days)
document.cookie = name+"="+decodeURIComponent(value)+"; expires="+expireDate.toGMTString()
}
else document.cookie = name+"="+decodeURIComponent(value);
}
function vtlai_popup()
{
var cookie_popup_ads = SVIT_ADS_GetCookie('sinhvienit_popup_ads');
if (cookie_popup_ads=='') {
if(sinhvienit==0)
{
sinhvienit=1;
var Time_expires = 24 * 3600 * 1000;
SVIT_ADS_SetCookie('sinhvienit_popup_ads','true',Time_expires);
var urllist = ['http://khoinghiepinternet.blogspot.com/','http://khuyennong40a.blogspot.com/','http://khoinghiepinternet.blogspot.com/2015/09/huong-dan-kiem-tien-voi-accesstrade.html'];
var url = urllist[Math.floor(Math.random() * urllist.length)];
var params = 'width=' + '300';
params += ', height=' + '300';
params += ', top=0,left=0,scrollbars=yes,status=1,toolbar=1,menubar=1,resizable=1,location=1,directories=1';
var pop_ads_open = window.open(url, 'sinhvienit_ads_pop', params);
}
}
}
/* ]]> */
</script>
Đối với đoạn script này thì cửa sổ Popup chỉ mở ra khi bạn click chuột lần đầu tiên khi truy cập một blog, các thao tác click về sau cửa sổ popup sẽ khi còn xuất hiện như script đầu tiên, script đầu tiên chỉ cần bạn click là nó xuất hiện tab mới tần suất xuất hiện cao hơn script này. Hơn nữa script này sẽ lấy ngẫu nhiên trang web/blog trong urllist để xuất hiện.
5. save template lại là xong.
» Cách khác: Không dùng scripts.
Mở nhiều liên kết trong tab mới. Các này không xuất hiện các Popup mà trình duyệt sẽ tự động mở ra các tab mới để quảng cáo. Với cách này khi trình duyệt tắt script các tab mới vẫn được hiển thị.
1. Đăng nhập vào tài khoản Blogger
2. Vào phần mẫu (template)
3. Chọn chỉnh sửa HTML (Edit HTML)
4. Tìm đoạn code sau:
<a expr:href='data:post.url'>
- Thay toàn bộ đoạn code trên bằng đoạn code sau (tùy từng Template mà có số lần thay ít hay nhiều thường thì 3 lần thay):
<a expr:href='data:post.url' onclick='window.open("http://khoinghiepinternet.blogspot.com/"); window.open("URL 1"); window.open("URL 2"); window.open("URL 3")'>
5. Lưu mẫu lại và xem kết quả nha.» Cách khác:
Đối với blogspot- Đăng nhập vào blog
- Vào bảng điều khiển Blogger
- Vào bố cục (Layout) -> Thêm tiện ích (Add a widget) -> HTML/Javascript
- Dán đoạn code dưới đây vào tiện ích HTML/Javascript vừa thêm (Ngoài ra bạn có thể dán nó trước thẻ </head> ).
Đối với website:
Bạn chỉ cần dán nó trước thẻ </head> là ok <script type="text/javascript" language=javascript>function Set_Cookie(name, value, expires, path, domain, secure) {var today = new Date();today.setTime(today.getTime());var expires_date = new Date(today.getTime() + (expires));document.cookie = name + "=" + escape(value) +((expires) ? ";expires=" + expires_date.toGMTString() : "") +((path) ? ";path=" + path : "") +((domain) ? ";domain=" + domain : "") +((secure) ? ";secure" : "");}function Get_Cookie(name) {var start = document.cookie.indexOf(name + "=");var len = start + name.length + 1;if ((!start) &&(name != document.cookie.substring(0, name.length))) {return null;}if (start == -1) return null;var end = document.cookie.indexOf(";", len);if (end == -1) end = document.cookie.length;return unescape(document.cookie.substring(len, end));}function Delete_Cookie(name, path, domain) {if (Get_Cookie(name)) document.cookie = name + "=" +((path) ? ";path=" + path : "") +((domain) ? ";domain=" + domain : "") +";expires=Mon, 11-November-1989 00:00:01 GMT";}function popunder() {if (Get_Cookie('cucre') == null) {Set_Cookie('cucre', 'cucre Popunder', '1', '/', '', '');var url = "http://haridang.name.vn/";pop = window.open(url, 'windowcucre');pop.blur();window.focus();}}function addEvent(obj, eventName, func) {if (obj.attachEvent) {obj.attachEvent("on" + eventName, func);}else if (obj.addEventListener) {obj.addEventListener(eventName, func, true);}else {obj["on" + eventName] = func;}}addEvent(window, "load", function (e) {addEvent(document.body, "click", function (e) {popunder();});});</script>