// ==UserScript==
// @name ABPVN AdsBlock
// @namespace ABPVN
// @author ABPVN
// @copyright ABPVN
// @homepage http://abpvn.com
// @supportURL https://github.com/abpvn/abpvn/issues
// @icon http://abpvn.com/icon.png
// @description Script block ads, remove wating of ABPVN
// @description:vi Script chặn quảng cáo,loại bỏ chờ đợi của ABPVN
// @contributionURL https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=donghoang.nguyen@gmail.com&item_name=ABPVN Donation
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_openInTab
// @grant GM_registerMenuCommand
// @include http://*
// @include https://*
// @version 2.2.54
// @change-log Add doxeaz10.site auto redirect
// @run-at document-end
// ==/UserScript==
/* String Prototype */
String.prototype.startWith = function (str) {
return typeof this.indexOf === 'function' && this.indexOf(str) === 0;
};
String.prototype.ismatch = function (regex) {
return typeof this.match === 'function' && this.match(regex) !== null;
};
//Bypass Class
var byPass = {
hideLinkUnlock: function () {
var contentDiv = document.querySelectorAll('.onp-sl-content,.onp-locker-call,[data-locker-id]');
if (contentDiv.length) {
ABPVN.cTitle();
//Add style tag to hide all .onp-sl and show all .onp-sl-content
if (!document.getElementById('abpvn_style')) {
var style = document.createElement('style');
style.id = 'abpvn_style';
style.innerHTML = '.onp-sl-content{display:block!important;}.onp-sl,.onp-sl-overlap-box{display:none!important;}.onp-sl-blur-area{filter: none!important;}';
document.body.appendChild(style);
} //ShowALl ContentDiv
for (var i in contentDiv) {
if (contentDiv[i].firstChild && contentDiv[i].firstChild.innerText != 'Unlocked by ABPVN.COM') {
var creditDiv = document.createElement('div');
creditDiv.innerHTML = '<a href="http://abpvn.com" target="_blank" style="color: #08BE54;font-weight: bold;">Unlocked by ABPVN.COM</a>';
creditDiv.style.textAlign = 'right';
contentDiv[i].insertBefore(creditDiv, contentDiv[i].firstChild);
}
if (contentDiv[i].style) {
contentDiv[i].style.display = 'block';
}
} //Hide All LockDiv
var lockDiv = document.querySelectorAll('.onp-sl,div[id^="content-locker"]');
for (var j in lockDiv) {
if (lockDiv[j].style) {
lockDiv[j].style.display = 'none !important';
lockDiv[j].setAttribute('hidden', 'hidden');
}
}
}
},
removeShortLink: function () {
var allShortLink = document.querySelectorAll('a[href*="/full/?api="]');
var count = 0;
if (allShortLink.length) {
ABPVN.cTitle();
for (var i = 0; i < allShortLink.length; i++) {
var processingLink = allShortLink[i];
var href = processingLink.getAttribute('href');
var tmp = href.match(/url=(.+?)&|$/);;
if (tmp[1]) {
processingLink.setAttribute('href', atob(tmp[1].replace(/=+$/, '')));
var oldTitle = processingLink.getAttribute('title');
processingLink.setAttribute('title', oldTitle ? (oldTitle + ' ') : '' + 'Short link by pass by ABPVN.COM');
count++;
}
}
Logger.info("By pass " + count + " short link");
}
},
quickByPassLink: function() {
var regex = /123link\..*|phlame.pw|mshare\.io|megaurl\.*|licklink.net|www.123l\.*|vinaurl\.*|share4you.pro|doxeaz10.site/;
var largeTimeoutHost = /licklink.net|share4you.pro/;
var autoCaptchaOnlyList = /megaurl\.*|vinaurl\.*|doxeaz10.site/;
if (regex.test(location.hostname)) {
try {
var checkClick = function (mutation) {
if (mutation.attributeName === "disabled" && !mutation.target.disabled) {
return true;
}
if (mutation.attributeName === "class" && !mutation.target.classList.contains('disabled')) {
return true;
}
return false;
}
// Set up a new observer
var observer = new MutationObserver(function (mutations) {
mutations.forEach(function (mutation) {
// Check the modified attributeName is "disabled"
if (checkClick(mutation)) {
mutation.target.click();
}
if (mutation.attributeName === "href") {
var link = mutation.target.getAttribute("href");
document.body.innerHTML = '<style>h1{color: #00dc58;}a{color: #015199}a h1{color: #015199;}</style><center><h1>ABPVN quick bypass đã hoạt động</h1><a href=\'https://abpvn.com/donate\'><h1>Ủng hộ ABPVN</h1></a><br/>Không tự chuyển trang? <a href=\'' + link + '\' title=\'Chuyển trang\'>Click vào đây</a></center>';
location.href = link;
}
});
});
// Configure to only listen to attribute changes
var config = {
attributes: true
};
var button = document.getElementById('invisibleCaptchaShortlink') || document.querySelector('.download_1');
if (button) {
observer.observe(button, config);
} else {
var getLink = document.querySelector('.get-link');
var timeout = largeTimeoutHost.test(location.hostname) ? 6000 : 100;
if (getLink) {
observer.observe(getLink, config);
if (!autoCaptchaOnlyList.test(location.hostname)) {
setTimeout(function () {
$("#go-link").addClass("go-link").trigger("submit.adLinkFly.counterSubmit").one("submit.adLinkFly.counterSubmit", function (e) {
e.preventDefault();
if (!largeTimeoutHost.test(location.hostname)) {
location.reload();
}
});
}, timeout);
}
}
}
// mshare.io
var downloadButton = document.querySelector('#download-file-button');
if (downloadButton) {
$.ajax({
url: '/download/get-download-info',
type: 'POST',
data: {
id: downloadButton.getAttribute('data-id')
},
success: function (data) {
if (data.success && data.file_info && data.file_info.href) {
var link = data.file_info.href;
document.body.innerHTML = '<style>h1{color: #00dc58;}a{color: #015199}a h1{color: #015199;}</style><center><h1>ABPVN quick download đã hoạt động</h1><a href=\'https://abpvn.com/donate\'><h1>Ủng hộ ABPVN</h1></a><br/>Không tự tải xuống? <a href=\'' + link + '\' title=\'Tải xuống\'>Click vào đây</a></center>';
location.href = link;
} else {
location.reload();
}
},
error: function () {
location.reload();
}
});
}
} catch (e) {
Logger.error(e);
}
}
},
init: function () {
if (configure.getValue('unlock_content', true)) {
window.addEventListener('DOMContentLoaded', this.hideLinkUnlock);
window.addEventListener('load', this.hideLinkUnlock);
this.hideLinkUnlock();
}
if (configure.getValue('remove_short_link', true)) {
window.addEventListener('DOMContentLoaded', this.removeShortLink);
}
if (configure.getValue('quick_by_pass_link', true)) {
this.quickByPassLink();
}
}
};
//Logger Class
var Logger = {
style: 'color: #00DC58',
info: function (text) {
console.info('%cABPVN.COM Info: ', this.style, text);
},
warn: function (text) {
console.warn('%cABPVN Warn: ', this.style, text);
},
error: function (text) {
console.error('%cABPVN Error: ', this.style, text);
},
log: function (text) {
console.log('%cABPVN Log: ', this.style, text);
},
};
//get Link class
var getLink = {
settingKey: 'fshare_download',
FShareConfig: function () {
if (this.url.startWith('https://www.fshare.vn')) {
var currentSetting = configure.getValue(this.settingKey, true);
var background_image = !currentSetting ? 'url("http://i.imgur.com/kJnOMOB.png")' : 'url("http://i.imgur.com/2b7fN6a.png")';
var title = currentSetting ? 'Bật get link fshare' : 'Tắt get link fshare';
var html = '<div id=\'fs_click\' title=\'' + title + '\' style=\'position: fixed; right: 0; bottom: 0; width: 30px; height: 30px; border-radius: 50%; background-image: ' + background_image + '; background-size: cover; cursor: pointer; z-index: 99999;\'></div>';
$(document).ready(function () {
$(document.body).append(html);
$(document).on('click', '#fs_click', function FS_on_off() {
if (currentSetting) {
currentSetting = false;
this.style.backgroundImage = 'url("http://i.imgur.com/kJnOMOB.png")';
this.setAttribute('title', 'Bật get link fshare');
alert('Đã tắt get link fshare');
} else {
currentSetting = true;
this.setAttribute('title', 'Tắt get link fshare');
this.style.backgroundImage = 'url("http://i.imgur.com/2b7fN6a.png")';
alert('Đã bật get link fshare');
}
configure.setValue("fshare_download", currentSetting);
});
});
}
},
FShareGetLink: function () {
if (this.url.startWith('https://www.fshare.vn/file/') && !this.url.startWith('https://www.fshare.vn/file/manager')) {
var currentSetting = configure.getValue(this.settingKey, true);
if (currentSetting) {
console.info('Start get link Fshare.vn');
$(document).ready(function () {
var checkpassword = document.querySelector('.password-form');
var linkcode = $('#linkcode').val();
if (checkpassword === null) {
var code = $('#form-download input[name="_csrf-app"]').val();
var data = {
'_csrf-app': code,
'fcode5': '',
'linkcode': linkcode,
'withFcode5': 0,
};
$.post('/download/get', data).done(function (data, statusText, xhr) {
if (data.url === undefined) location.reload();
else {
if (typeof location != 'undefined') {
Logger.log(location.href + ' -> ' + data.url);
location.href = data.url;
} else {
$('.download').prepend('<a title="Tải trực tiếp" style="padding: 5px 0;box-sizing: content-box;" class="download-btn mdc-button mdc-button--raised mdc-ripple-upgraded full-width mdc-button-primary fcode5" href="' + data.url + '">Tải trực tiếp<span>Hỗ trợ bởi abpvn.com</span></a>');
}
}
}).fail(function (xhr, statusText, error) {
alert('ABPVN: Đã có lỗi fshare hoặc file có password');
});
} else {
alert('ABPVN: Hãy nhập mật khẩu cho file trước');
}
});
} else {
$('.download').prepend('<a title="Download nhanh qua linksvip.net" style="padding: 5px 0;box-sizing: content-box; margin: 5px auto;background-color: #00dc58;" class="download-btn mdc-button mdc-button--raised mdc-ripple-upgraded full-width mdc-button-primary fcode5" href="http://linksvip.net?link=' + location.href + '">Tải nhanh<span>Qua dịch vụ linksvip.net</span></a>');
$('.download').prepend('<a title="Download nhanh qua getlinkaz.com" style="padding: 5px 0;margin: 5px auto;box-sizing: content-box;background-color: #00dc58;" class="download-btn mdc-button mdc-button--raised mdc-ripple-upgraded full-width mdc-button-success fcode5" href="https://vnlinks.net?link=' + location.href + '">Tải nhanh<span>Qua dịch vụ vnlinks.net</span></a>');
}
}
},
mediafire_com: function () {
if (this.url.startWith('http://www.mediafire.com/file/') || this.url.startWith('https://www.mediafire.com/file/')) {
var a_tag = document.querySelector('.download_link a.input');
var link = a_tag.getAttribute('href');
if (link.startWith('http')) {
document.body.innerHTML = '<style>h1{color: #00dc58;}a{color: #015199}a h1{color: #015199;}</style><center><h1>ABPVN MediaFire Download đã hoạt động</h1><a href=\'https://abpvn.com/donate\'><h1>Ủng hộ ABPVN</h1></a><br/>Không tự tải xuống? <a href=\'' + link + '\' title=\'Download\'>Click vào đây</a></center>';
location.href = link;
}
}
},
usercloud_com: function () {
if (this.url.startWith('https://userscloud.com/') && this.url.length > 24) {
var form = document.querySelector('form[name="F1"]');
if (form) {
form.submit();
document.body.innerHTML = '<style>h1{color: #00dc58;}a{color: #015199}a h1{color: #015199;}</style><center><h1>ABPVN UserCloud Download đã hoạt động</h1><a href=\'https://abpvn.com/donate\'><h1>Ủng hộ ABPVN</h1></center>';
} else {
var a_link = document.querySelector('h4 a.btn-success');
if (a_link) {
var link = a_link.getAttribute('href');
if (link.startWith('https')) {
document.body.innerHTML = '<style>h1{color: #00dc58;}a{color: #015199}a h1{color: #015199;}</style><center><h1>ABPVN UserCloud Download đã hoạt động</h1><a href=\'https://abpvn.com/donate\'><h1>Ủng hộ ABPVN</h1></a><br/>Không tự tải xuống? <a href=\'' + link + '\' title=\'Download\'>Click vào đây</a></center>';
}
}
}
}
},
init: function () {
this.url = location.href;
this.FShareConfig();
this.FShareGetLink();
if (configure.getValue('quick_download', true)) {
this.mediafire_com();
this.usercloud_com();
}
}
};
//Fix site class
var fixSite = {
elementExist: function (selector) {
var check = document.querySelector(selector);
return check != null;
},
getAllText: function (selector) {
var text = '';
var nodeList = document.querySelectorAll(selector);
if (nodeList) {
for (var i in nodeList) {
if (nodeList[i].innerText) text += nodeList[i].innerText;
}
}
return text;
},
getScript: function (url) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.addEventListener('load', function (data) {
var blob = new Blob([xhr.responseText], {
type: 'text/javascript'
});
var url = URL.createObjectURL(blob);
var script = document.createElement('script');
script.src = url;
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
});
xhr.send();
},
loadCss: function (url, id) {
var css_tag = document.createElement('link');
css_tag.rel = 'stylesheet';
css_tag.id = id;
css_tag.href = url;
var head = document.getElementsByTagName('head')[0];
head.appendChild(css_tag);
},
phimmedia_tv: function () {
if (this.url.startWith('https://www.phimmedia.tv/') || this.url.startWith('http://www.phimmedia.tv/')) {
var links = document.querySelectorAll('#btn-film-watch,.poster > a');
if (links) {
for (var i = 0; i < links.length; i++) {
var href = links[i].getAttribute('href');
href = href.match('utm_id=.*')[0].replace('utm_id=', '');
if (href) {
links[i].setAttribute('href', atob(href));
}
}
ABPVN.cTitle();
}
}
},
linkneverdie_com: function () {
if (this.url.startWith('https://linkneverdie.com/')) {
ABPVN.cTitle();
var el = document.getElementById('wrapper');
if (el) {
el.id = "wrapper-fix-by-abpvn";
}
//Hide ads image
var aTag = document.querySelector('#adsqca');
if (aTag) {
aTag.setAttribute('style', 'display:none !important');
}
}
},
hdonline_vn: function () {
if (this.url.startWith('http://hdonline.vn')) {
var links = document.querySelectorAll('a[href^="http://hub.blueserving.com/"]');
for (var i in links) {
var link = links[i];
var href = link.getAttribute('href');
href = href.match('url=.*')[0].replace('url=', '');
if (href) {
link.setAttribute('href', href);
}
}
ABPVN.cTitle();
}
},
maclife_vn: function () {
if (this.url.startWith('https://maclife.vn/')) {
var allShortUrl = document.querySelectorAll('a[rel]');
var count = 0;
for (var i = 0; i < allShortUrl.length; i++) {
if (allShortUrl[i].innerText.indexOf('http') === 0) {
allShortUrl[i].setAttribute('href', allShortUrl[i].innerText);
count++;
}
}
Logger.info("Đã xóa " + count + " link rút gọn!");
}
},
aphim_co: function () {
if (this.url.startWith('https://aphim.co/xem-phim/')) {
ABPVN.cTitle();
var aTagAds = document.querySelector('#video > a');
aTagAds.setAttribute('href', '#abpvn');
aTagAds.removeAttribute('target');
Logger.info('Đã xóa link quảng cáo!');
}
},
openload: function () {
if (this.url.match(/^(https?:)?\/\/openload\.co\/*.*/) || this.url.match(/^(https?:)?\/\/oload\.\/*.*/)) {
//Base on https://greasyfork.org/vi/scripts/17665-openload
//
// @run-at document-start
//
window.adblock = false;
window.adblock2 = false;
window.turnoff = true;
window.open = function () { };
//
// @run-at document-end
//
function onready(fn) {
if (document.readyState != 'loading') fn();
else document.addEventListener('DOMContentLoaded', fn);
}
onready(function () {
if (document.location.href.match(/\/embed\//) || $('#realdl>a')) {
$('#btnView').hide();
$('#btnDl').hide();
$('.dlButtonContainer').show();
$('h3.dlfile.h-method').hide();
$('.col-md-4.col-centered-sm *').remove();
$('#mgiframe,#main>div[id*="Composite"]').remove();
$('#downloadTimer').hide();
$('#mediaspace_wrapper').prepend($('<div/>').attr('id', 'realdl')
.attr('style', 'position: absolute; top: 0 ; left: 0 ; right: 0; text-align: center; z-index: 9999; background-color: #00DC58; padding: .5em 0;')
.on('mouseenter', function () {
$(this).fadeTo(500, 1);
}).on('mouseleave', function () {
$(this).fadeTo(500, 0);
})
.append($('<a/>').attr('href', '').attr('style', 'color: #fff; text-decoration: none;').html('FREE DOWNLOAD<sub>Power by abpvn.com</sub>')));
if (document.location.href.match(/\/embed\//)) {
setTimeout(function () {
$('#realdl').fadeTo(500, 0);
}, 1500);
}
$('#realdl').show();
var streamurl_tmr = setInterval(function () {
// <@snippet author="https://greasyfork.org/forum/profile/daedelus" src="https://greasyfork.org/forum/discussion/36362/x">
var streamurl_src;
$('p[id]').each(function () {
streamurl_src = streamurl_src || ($(this).text().match(/^[\w\.~-]+$/) && $(this).text().match(/~/)) ? $(this).text() : streamurl_src;
});
// </@snippet>
if (streamurl_src) {
var streamurl_url = location.origin + '/stream/' + streamurl_src;
$('#realdl a').attr('href', streamurl_url);
$('#steamcopy').text(streamurl_url);
$('#videooverlay').click();
clearInterval(streamurl_tmr);
}
}, 100);
}
window.onclick = function () { };
document.onclick = function () { };
document.body.onclick = function () { };
});
}
},
fontdep_com: function () {
if (this.url.startWith('http://www.fontdep.com/') && document.cookie.indexOf('virallock_myid') == -1) {
document.cookie = 'virallock_myid=0001';
location.reload();
}
},
antiAdblockRemover: function () {
var msg = 'By pass adBlock detect rồi nhé! Hahahahaha 😁😁😁';
if (typeof adBlockDetected === 'function') {
adBlockDetected = function () {
Logger.info(msg);
};
}
if (typeof showAdsBlock === 'function') {
showAdsBlock = function () {
Logger.info(msg);
};
}
},
removeRedir: function (config) {
if (this.url.match(new RegExp(config.url, 'g')) || this.url.startWith(config.url)) {
ABPVN.cTitle();
var links = document.querySelectorAll(config.selector || 'a[href^="' + config.replace + '"]');
Logger.info('Remove Redirect for ' + links.length + ' links');
if (links.length) {
links.forEach(function (item) {
var stockUrl = item.getAttribute('href').replace(config.replace, '');
var count = 0;
while (stockUrl.indexOf('%2') > -1 && count < 5) {
stockUrl = decodeURIComponent(stockUrl);
count++;
}
item.setAttribute('href', stockUrl);
item.setAttribute('title', 'Link đã xóa chuyển hướng trung gian bởi abpvn.com');
}.bind(this));
}
}
},
removeRedirect() {
var configs = [{
url: 'https://samsungvn.com',
replace: 'https://samsungvn.com/xfa-interstitial/redirect?url=',
},
{
url: 'https://forum.vietdesigner.net',
replace: 'redirect/?url='
},
{
url: 'http://sinhvienit.net',
replace: 'http://sinhvienit.net/goto/?'
},
{
url: 'http://phanmemaz.com/',
replace: 'http://phanmemaz.com/wp-content/plugins/tm-wordpress-redirection/l.php?'
},
{
url: 'forums.voz.vn/showthread.php',
replace: '/redirect/index.php?link='
},
{
url: 'www.webtretho.com/forum/',
replace: /http(s?):\/\/webtretho\.com\/forum\/links\.php\?url=/,
selector: 'a[href*="webtretho.com/forum/links.php?url="]'
}
];
configs.forEach(function (config) {
this.removeRedir(config);
}.bind(this));
},
init: function () {
this.url = location.href;
if (configure.getValue('remove_redirect', true)) {
this.removeRedirect();
}
this.antiAdblockRemover();
this.phimmedia_tv();
this.linkneverdie_com();
this.hdonline_vn();
this.maclife_vn();
this.aphim_co();
this.fontdep_com();
this.openload();
}
};
//Ad blocker script
var adBlocker = {
blockPopUp: function () {
var listSite = [
'blogtruyen.com',
'www.khosachnoi.net',
'hamtruyen.vn',
'phim14.net',
'phim7.com',
'www.diendan.trentroiduoidat.com',
'www.trentroiduoidat.com',
'chophanthiet.us',
'animetvn.com',
'font.vn',
'vidoza.net',
'www.easysoft.xyz',
'hdonline.vn',
'www.phim.media',
'phimnhanh.com',
'www.vietsubhd.com',
'www.phimmedia.tv',
'tvhay.org',
'bilutv.org'
];
for (var i = 0; i < listSite.length; i++) {
if (location.hostname === listSite[i]) {
ABPVN.cTitle();
Logger.info('Đã chặn popup quảng cáo');
document.body.onclick = null;
document.onclick = null;
document.ontouchstart = null;
document.onmousedown = null;
window.addEventListener('load', function () {
setTimeout(function () {
Logger.info('Đã chặn popup quảng cáo onload');
document.ontouchstart = null;
document.onclick = null;
document.body.onclick = null;
document.onmousedown = null;
}, 300);
});
window.addEventListener('DOMContentLoaded', function () {
setTimeout(function () {
Logger.info('Đã chặn popup quảng cáo dom load');
document.ontouchstart = null;
document.onclick = null;
document.body.onclick = null;
document.onmousedown = null;
}, 300);
});
}
}
},
mgIdAdRemover: function () {
var allMgIdEl = document.querySelectorAll('[id*="ScriptRoot"]');
if (allMgIdEl && allMgIdEl.length) {
ABPVN.cTitle();
for (var i = 0; i < allMgIdEl.length; i++) {
allMgIdEl[i].id = 'ScriptRoot-removed-by-abpvn-' + Math.random();
allMgIdEl[i].innerHTML = '';
}
}
},
phimnhanh_com: function () {
if (this.url.startWith('http://phimnhanh.com/xem-phim')) {
Logger.warn('Đã chặn video preload');
if (video !== undefined) {
video.preroll = function (options) { };
}
}
},
vinaurl_net: function() {
if (this.url.match(/vinaurl\.*/)) {
document.querySelectorAll('div[id^="ads-"]').forEach(item => item.remove());
}
},
init: function() {
this.url = location.href;
this.mgIdAdRemover();
this.blockPopUp();
this.phimnhanh_com();
this.vinaurl_net();
},
};
var configure = {
urls: {
setting: 'https://abpvn.com/script-setting.html',
issue: 'https://github.com/abpvn/abpvn/issues/new',
fanpage: 'https://www.facebook.com/abpvn.org',
},
openUrl: function (url) {
if (typeof GM_openInTab === 'function') {
GM_openInTab(url);
}
},
getValue: function (key, defaultValue) {
var value;
if (typeof GM_getValue === 'function') {
value = GM_getValue(key);
}
if (typeof value === 'undefined') {
return defaultValue;
}
return value;
},
setValue: function (key, value) {
if (typeof GM_setValue === 'function') {
return GM_setValue(key, value);
}
},
setUpSetting: function () {
if (this.url === this.urls.setting) {
var settingContainer = document.querySelector('#setting-container');
if (settingContainer) {
settingContainer.classList.add('installed');
var allSetting = settingContainer.querySelectorAll('input[type="checkbox"]');
if (allSetting) {
allSetting.forEach(checkbox => {
checkbox.checked = this.getValue(checkbox.name, true);
checkbox.addEventListener('change', event => {
var target = event.target;
var key = target.name;
this.setValue(key, event.target.checked);
});
});
}
}
}
},
init: function () {
this.url = location.href;
if (typeof GM_registerMenuCommand === 'function') {
GM_registerMenuCommand('ABPVN - Cài đặt', () => {
this.openUrl(this.urls.setting);
});
GM_registerMenuCommand('ABPVN - Báo lỗi', () => {
this.openUrl(this.urls.issue);
});
GM_registerMenuCommand('ABPVN - Fanpage', () => {
this.openUrl(this.urls.fanpage);
});
}
this.setUpSetting();
}
};
//Main class
var ABPVN = {
cTitle: function () {
if (document.title.indexOf(' - Fixed by ABPVN.COM') === -1) {
document.title = document.title + ' - Fixed by ABPVN.COM';
}
},
init: function () {
//Init class adBlocker
adBlocker.init();
//Init class getLink
getLink.init();
//Init class Fixsite
fixSite.init();
//Init bypass class
byPass.init();
if (window === window.parent) {
//Init Congfiure
configure.init();
}
}
};
//RUN INNIT
ABPVN.init();