// ==UserScript==
// @name AdsBypasser
// @namespace AdsBypasser
// @description Bypass Ads
// @copyright 2012+, Wei-Cheng Pan (legnaleurc)
// @version 5.42.0
// @license BSD
// @homepageURL https://adsbypasser.github.io/
// @supportURL https://github.com/adsbypasser/adsbypasser/issues
// @icon https://raw.githubusercontent.com/adsbypasser/adsbypasser/v5.42.0/img/logo.png
// @grant unsafeWindow
// @grant GM_xmlhttpRequest
// @grant GM_addStyle
// @grant GM_getResourceText
// @grant GM_getResourceURL
// @grant GM_getValue
// @grant GM_openInTab
// @grant GM_registerMenuCommand
// @grant GM_setValue
// @run-at document-start
// @resource alignCenter https://raw.githubusercontent.com/adsbypasser/adsbypasser/v5.42.0/css/align_center.css
// @resource scaleImage https://raw.githubusercontent.com/adsbypasser/adsbypasser/v5.42.0/css/scale_image.css
// @resource bgImage https://raw.githubusercontent.com/adsbypasser/adsbypasser/v5.42.0/img/imagedoc-darknoise.png
// @include http://*
// @include https://*
// ==/UserScript==
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
var bluebird = require('bluebird');
module.exports = factory(context, bluebird.Promise);
} else {
var P = null;
if (context.unsafeWindow.Future) {
P = function (fn) {
return context.unsafeWindow.Future.call(this, function (fr) {
fn(fr.resolve.bind(fr), fr.reject.bind(fr));
});
};
} else if (context.PromiseResolver) {
P = function (fn) {
return new context.Promise(function (pr) {
fn(pr.resolve.bind(pr), pr.reject.bind(pr));
});
};
} else {
P = context.Promise;
}
factory(context, P);
}
}(this, function (context, Promise) {
'use strict';
var _ = context._ = {};
function setupStack () {
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
} else if (!this.hasOwnProperty('stack')) {
var stack = (new Error()).stack.split('\n').slice(2);
var e = stack[0].match(/^.*@(.*):(\d*)$/);
this.fileName = e[1];
this.lineNumber = parseInt(e[2], 10);
this.stack = stack.join('\n');
}
}
function AdsBypasserError (message) {
setupStack.call(this);
this.message = message;
}
AdsBypasserError.prototype = Object.create(Error.prototype);
AdsBypasserError.prototype.constructor = AdsBypasserError;
AdsBypasserError.prototype.name = 'AdsBypasserError';
AdsBypasserError.extend = function (protoProps, staticProps) {
var parent = this, child = function () {
setupStack.call(this);
protoProps.constructor.apply(this, arguments);
};
extend(child, parent, staticProps);
child.prototype = Object.create(parent.prototype);
extend(child.prototype, protoProps);
child.prototype.constructor = child;
child.super = parent.prototype;
return child;
};
AdsBypasserError.super = null;
_.AdsBypasserError = AdsBypasserError;
function any (c, fn) {
if (c.some) {
return c.some(fn);
}
if (typeof c.length === 'number') {
return Array.prototype.some.call(c, fn);
}
return Object.keys(c).some(function (k) {
return fn(c[k], k, c);
});
}
function all (c, fn) {
if (c.every) {
return c.every(fn);
}
if (typeof c.length === 'number') {
return Array.prototype.every.call(c, fn);
}
return Object.keys(c).every(function (k) {
return fn(c[k], k, c);
});
}
function each (c, fn) {
if (c.forEach) {
c.forEach(fn);
} else if (typeof c.length === 'number') {
Array.prototype.forEach.call(c, fn);
} else {
Object.keys(c).forEach(function (k) {
fn(c[k], k, c);
});
}
}
function map (c, fn) {
if (c.map) {
return c.map(fn);
}
if (typeof c.length === 'number') {
return Array.prototype.map.call(c, fn);
}
return Object.keys(c).map(function (k) {
return fn(c[k], k, c);
});
}
function extend(c) {
Array.prototype.slice.call(arguments, 1).forEach(function (source) {
if (!source) {
return;
}
_.C(source).each(function (v, k) {
c[k] = v;
});
});
return c;
}
function CollectionProxy (collection) {
this._c = collection;
}
CollectionProxy.prototype.size = function () {
if (typeof this._c.length === 'number') {
return this._c.length;
}
return Object.keys(c).length;
};
CollectionProxy.prototype.at = function (k) {
return this._c[k];
};
CollectionProxy.prototype.each = function (fn) {
each(this._c, fn);
return this;
};
CollectionProxy.prototype.find = function (fn) {
var result;
any(this._c, function (value, index, self) {
var tmp = fn(value, index, self);
if (tmp !== _.none) {
result = {
key: index,
value: value,
payload: tmp,
};
return true;
}
return false;
});
return result;
};
CollectionProxy.prototype.all = function (fn) {
return all(this._c, fn);
};
CollectionProxy.prototype.map = function (fn) {
return map(this._c, fn);
};
_.C = function (collection) {
return new CollectionProxy(collection);
};
_.T = function (s) {
if (typeof s === 'string') {
} else if (s instanceof String) {
s = s.toString();
} else {
throw new AdsBypasserError('template must be a string');
}
var T = {
'{{': '{',
'}}': '}',
};
return function () {
var args = Array.prototype.slice.call(arguments);
var kwargs = args[args.length-1];
return s.replace(/\{\{|\}\}|\{([^\}]+)\}/g, function (m, key) {
if (T.hasOwnProperty(m)) {
return T[m];
}
if (args.hasOwnProperty(key)) {
return args[key];
}
if (kwargs.hasOwnProperty(key)) {
return kwargs[key];
}
return m;
});
};
};
_.P = function (fn) {
if (typeof fn !== 'function') {
throw new _.AdsBypasserError('must give a function');
}
var slice = Array.prototype.slice;
var args = slice.call(arguments, 1);
return function () {
return fn.apply(this, args.concat(slice.call(arguments)));
};
};
_.D = function (fn) {
return new Promise(fn);
};
_.parseJSON = function (json) {
try {
return JSON.parse(json);
} catch (e) {
_.warn(e);
}
return _.none;
};
_.isString = function (value) {
return (typeof value === 'string') || (value instanceof String);
};
_.nop = function () {
};
_.none = _.nop;
_.wait = function (msDelay) {
return _.D(function (resolve, reject) {
setTimeout(resolve, msDelay);
});
};
function log (method, args) {
if (_._quiet) {
return;
}
args = Array.prototype.slice.call(args);
if (_.isString(args[0])) {
args[0] = 'AdsBypasser: ' + args[0];
} else {
args.unshift('AdsBypasser:');
}
var f = console[method];
if (typeof f === 'function') {
f.apply(console, args);
}
}
_._quiet = false;
_.info = function () {
log('info', arguments);
};
_.warn = function () {
log('warn', arguments);
};
return _;
}));
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context) {
var core = require('./core.js');
return factory(context, core);
};
} else {
context.$ = factory(context, context._);
}
}(this, function (context, _) {
'use strict';
var window = context.window;
var document = window.document;
var DomNotFoundError = _.AdsBypasserError.extend({
name: 'DomNotFoundError',
constructor: function (selector) {
DomNotFoundError.super.constructor.call(this, _.T('`{0}` not found')(selector));
},
});
var $ = function (selector, context) {
if (!context || !context.querySelector) {
context = document;
}
var n = context.querySelector(selector);
if (!n) {
throw new DomNotFoundError(selector);
}
return n;
};
$.$ = function (selector, context) {
try {
return $(selector, context);
} catch (e) {
return null;
}
};
$.$$ = function (selector, context) {
if (!context || !context.querySelectorAll) {
context = document;
}
var ns = context.querySelectorAll(selector);
return _.C(ns);
};
$.toDOM = function(rawHTML) {
try {
var parser = new DOMParser();
var DOMHTML = parser.parseFromString(rawHTML, "text/html");
return DOMHTML;
} catch (e) {
throw new _.AdsBypasserError('could not parse HTML to DOM');
}
};
$.removeNodes = function (selector, context) {
$.$$(selector, context).each(function (e) {
e.parentNode.removeChild(e);
});
};
function searchScriptsByRegExp (pattern, context) {
var m = $.$$('script', context).find(function (s) {
var m = s.innerHTML.match(pattern);
if (!m) {
return _.none;
}
return m;
});
if (!m) {
return null;
}
return m.payload;
}
function searchScriptsByString (pattern, context) {
var m = $.$$('script', context).find(function (s) {
var m = s.innerHTML.indexOf(pattern);
if (m < 0) {
return _.none;
}
return m;
});
if (!m) {
return null;
}
return m.value.innerHTML;
}
$.searchScripts = function (pattern, context) {
if (pattern instanceof RegExp) {
return searchScriptsByRegExp(pattern, context);
} else if (_.isString(pattern)) {
return searchScriptsByString(pattern, context);
} else {
return null;
}
};
return $;
}));
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context, GM) {
var core = require('./core.js');
return factory(context, GM, core);
};
} else {
factory(context, {
xmlhttpRequest: GM_xmlhttpRequest,
}, context._);
}
}(this, function (context, GM, _) {
'use strict';
var window = context.window;
var document = window.document;
var $ = context.$ || {};
function deepJoin (prefix, object) {
return _.C(object).map(function (v, k) {
var key = _.T('{0}[{1}]')(prefix, k);
if (typeof v === 'object') {
return deepJoin(key, v);
}
return _.T('{0}={1}').apply(this, [key, v].map(encodeURIComponent));
}).join('&');
}
function toQuery (data) {
var type = typeof data;
if (data === null || (type !== 'string' && type !== 'object')) {
return '';
}
if (type === 'string') {
return data;
}
if (data instanceof String) {
return data.toString();
}
return _.C(data).map(function (v, k) {
if (typeof v === 'object') {
return deepJoin(k, v);
}
return _.T('{0}={1}').apply(this, [k, v].map(encodeURIComponent));
}).join('&');
}
function ajax (method, url, data, headers) {
var l = document.createElement('a');
l.href = url;
var reqHost = l.hostname;
var overrideHeaders = {
Host: reqHost || window.location.host,
Origin: window.location.origin,
Referer: window.location.href,
'X-Requested-With': 'XMLHttpRequest',
};
_.C(overrideHeaders).each(function (v, k, c) {
if (headers[k] === _.none) {
delete headers[k];
} else {
headers[k] = v;
}
});
var xhr = null;
var promise = _.D(function (resolve, reject) {
xhr = GM.xmlhttpRequest({
method: method,
url: url,
data: data,
headers: headers,
onload: function (response) {
response = (typeof response.responseText !== 'undefined') ? response : this;
if (response.status !== 200) {
reject(response.responseText);
} else {
resolve(response.responseText);
}
},
onerror: function (response) {
response = (typeof response.responseText !== 'undefined') ? response : this;
reject(response.responseText);
},
});
});
promise.abort = function () {
xhr.abort();
};
return promise;
}
$.get = function (url, data, headers) {
data = toQuery(data);
data = data ? '?' + data : '';
headers = headers || {};
return ajax('GET', url + data, '', headers);
};
$.post = function (url, data, headers) {
data = toQuery(data);
var h = {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
'Content-Length': data.length,
};
if (headers) {
_.C(headers).each(function (v, k) {
h[k] = v;
});
}
return ajax('POST', url, data, h);
};
return $;
}));
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context) {
var core = require('./core.js');
return factory(context, core);
};
} else {
factory(context, context._);
}
}(this, function (context, _) {
'use strict';
var window = context.window;
var document = window.document;
var $ = context.$ || {};
$.setCookie = function (key, value) {
var now = new Date();
now.setTime(now.getTime() + 3600 * 1000);
var tpl = _.T('{0}={1};path={2};');
document.cookie = tpl(key, value, window.location.pathname, now.toUTCString());
};
$.getCookie = function (key) {
var c = _.C(document.cookie.split(';')).find(function (v) {
var k = v.replace(/^\s*(\w+)=.+$/, '$1');
if (k !== key) {
return _.none;
}
});
if (!c) {
return null;
}
c = c.value.replace(/^\s*\w+=([^;]+).+$/, '$1');
if (!c) {
return null;
}
return c;
};
$.resetCookies = function () {
var a = document.domain;
var b = document.domain.replace(/^www\./, '');
var c = document.domain.replace(/^(\w+\.)+?(\w+\.\w+)$/, '$2');
var d = (new Date(1e3)).toUTCString();
_.C(document.cookie.split(';')).each(function (v) {
var k = v.replace(/^\s*(\w+)=.+$/, '$1');
document.cookie = _.T('{0}=;expires={1};')(k, d);
document.cookie = _.T('{0}=;path=/;expires={1};')(k, d);
var e = _.T('{0}=;path=/;domain={1};expires={2};');
document.cookie = e(k, a, d);
document.cookie = e(k, b, d);
document.cookie = e(k, c, d);
});
};
return $;
}));
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context) {
var core = require('./core.js');
return factory(context, core);
};
} else {
factory(context, context._);
}
}(this, function (context, _) {
'use strict';
var window = context.window;
var document = window.document;
var $ = context.$ || {};
var patterns = [];
$.register = function (pattern) {
patterns.push(pattern);
};
function dispatchByObject (rule, url_6) {
var matched = {};
var passed = _.C(rule).all(function (pattern, part) {
if (pattern instanceof RegExp) {
matched[part] = url_6[part].match(pattern);
} else if (pattern instanceof Array) {
var r = _.C(pattern).find(function (p) {
var m = url_6[part].match(p);
return m || _.none;
});
matched[part] = r ? r.payload : null;
}
return !!matched[part];
});
return passed ? matched : null;
}
function dispatchByRegExp (rule, url_1) {
return url_1.match(rule);
}
function dispatchByArray (byLocation, rules, url_1, url_3, url_6) {
var tmp = _.C(rules).find(function (rule) {
var m = dispatch(byLocation, rule, url_1, url_3, url_6);
if (!m) {
return _.none;
}
return m;
});
return tmp ? tmp.payload : null;
}
function dispatchByString (rule, url_3) {
var scheme = /\*|https?|file|ftp|chrome-extension/;
var host = /\*|(\*\.)?([^\/*]+)/;
var path = /\/.*/;
var up = new RegExp(_.T('^({scheme})://({host})?({path})$')({
scheme: scheme.source,
host: host.source,
path: path.source,
}));
var matched = rule.match(up);
if (!matched) {
return null;
}
scheme = matched[1];
host = matched[2];
var wc = matched[3];
var sd = matched[4];
path = matched[5];
if (scheme === '*' && !/https?/.test(url_3.scheme)) {
return null;
} else if (scheme !== url_3.scheme) {
return null;
}
if (scheme !== 'file' && host !== '*') {
if (wc) {
up = url_3.host.indexOf(sd);
if (up < 0 || up + sd.length !== url_3.host.length) {
return null;
}
} else if (host !== url_3.host) {
return null;
}
}
path = new RegExp(_.T('^{0}$')(path.replace(/[*.\[\]?+#]/g, function (c) {
if (c === '*') {
return '.*';
}
return '\\' + c;
})));
if (!path.test(url_3.path)) {
return null;
}
return url_3;
}
function dispatchByFunction (rule, url_1, url_3, url_6) {
return rule(url_1, url_3, url_6);
}
function dispatch (byLocation, rule, url_1, url_3, url_6) {
if (rule instanceof Array) {
return dispatchByArray(byLocation, rule, url_1, url_3, url_6);
}
if (typeof rule === 'function') {
if (byLocation) {
return null;
}
return dispatchByFunction(rule, url_1, url_3, url_6);
}
if (rule instanceof RegExp) {
return dispatchByRegExp(rule, url_1);
}
if (_.isString(rule)) {
return dispatchByString(rule, url_3);
}
return dispatchByObject(rule, url_6);
}
$._findHandler = function (byLocation) {
var url_1 = window.location.toString();
var url_3 = {
scheme: window.location.protocol.slice(0, -1),
host: window.location.host,
path: window.location.pathname + window.location.search + window.location.hash,
};
var url_6 = {
scheme: window.location.protocol,
host: window.location.hostname,
port: window.location.port,
path: window.location.pathname,
query: window.location.search,
hash: window.location.hash,
};
var pattern = _.C(patterns).find(function (pattern) {
var m = dispatch(byLocation, pattern.rule, url_1, url_3, url_6);
if (!m) {
return _.none;
}
return m;
});
if (!pattern) {
return null;
}
var matched = pattern.payload;
pattern = pattern.value;
if (!pattern.start && !pattern.ready) {
return null;
}
return {
start: pattern.start ? _.P(pattern.start, matched) : _.nop,
ready: pattern.ready ? _.P(pattern.ready, matched) : _.nop,
};
};
return $;
}));
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context) {
var core = require('./core.js');
return factory(context, core);
};
} else {
factory(context, context._);
}
}(this, function (context, _) {
'use strict';
var window = context.window;
var document = window.document;
var $ = context.$ || {};
function prepare (e) {
if (!document.body) {
document.body = document.createElement('body');
}
document.body.appendChild(e);
}
function get (url) {
var a = document.createElement('a');
a.href = url;
prepare(a);
a.click();
}
function post (path, params) {
params = params || {};
var form = document.createElement('form');
form.method = 'post';
form.action = path;
_.C(params).each(function (value, key) {
var input = document.createElement('input');
input.type = 'hidden';
input.name = key;
input.value = value;
form.appendChild(input);
});
prepare(form);
form.submit();
}
$.openLink = function (to, options) {
if (!_.isString(to) && !to) {
_.warn('false URL');
return;
}
options = options || {};
var withReferer = typeof options.referer === 'undefined' ? true : options.referer;
var postData = options.post;
var from = window.location.toString();
_.info(_.T('{0} -> {1}')(from, to));
if (postData) {
post(to, postData);
return;
}
if (withReferer) {
get(to);
return;
}
window.top.location.replace(to);
};
return $;
}));
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context) {
var core = require('./core.js');
var ajax = require('./ajax.js');
var $ = ajax(context);
return factory(context, core, $);
};
} else {
factory(context, context._, context.$);
}
}(this, function (context, _, $) {
'use strict';
var window = context.window;
var unsafeWindow = context.unsafeWindow || (0, eval)('this').window;
var document = window.document;
$.removeAllTimer = function () {
var handle = window.setInterval(_.nop, 10);
while (handle > 0) {
window.clearInterval(handle--);
}
handle = window.setTimeout(_.nop, 10);
while (handle > 0) {
window.clearTimeout(handle--);
}
};
$.captcha = function (imgSrc, cb) {
if (!$.config.externalServerSupport) {
return;
}
var a = document.createElement('canvas');
var b = a.getContext('2d');
var c = new Image();
c.src = imgSrc;
c.onload = function () {
a.width = c.width;
a.height = c.height;
b.drawImage(c, 0, 0);
var d = a.toDataURL();
var e = d.substr(d.indexOf(',') + 1);
$.post('http://www.wcpan.info/cgi-bin/captcha.cgi', {
i: e,
}, cb);
};
};
function clone (safe) {
if (safe === null || !(safe instanceof Object)) {
return safe;
}
if (safe instanceof String) {
return safe.toString();
}
if (safe instanceof Function) {
return exportFunction(safe, unsafeWindow, {
allowCrossOriginArguments: true,
});
}
if (safe instanceof Array) {
var unsafe = new unsafeWindow.Array();
for (var i = 0; i < safe.length; ++i) {
unsafe.push(clone(safe[i]));
}
return unsafe;
}
var unsafe = new unsafeWindow.Object();
_.C(safe).each(function (v, k) {
unsafe[k] = clone(v);
});
return unsafe;
}
var MAGIC_KEY = '__adsbypasser_reverse_proxy__';
$.window = (function () {
var isFirefox = typeof InstallTrigger !== 'undefined';
if (!isFirefox) {
return unsafeWindow;
}
var decorator = {
set: function (target, key, value) {
if (key === MAGIC_KEY) {
return false;
}
if (target === unsafeWindow && key === 'open') {
var d = Object.getOwnPropertyDescriptor(target, key);
d.value = clone(value);
Object.defineProperty(target, key, d);
} else {
target[key] = clone(value);
}
return true;
},
get: function (target, key) {
if (key === MAGIC_KEY) {
return target;
}
var value = target[key];
var type = typeof value;
if (value === null || (type !== 'function' && type !== 'object')) {
return value;
}
return new Proxy(value, decorator);
},
apply: function (target, self, args) {
args = Array.prototype.slice.call(args);
if (target === unsafeWindow.Object.defineProperty) {
args[0] = args[0][MAGIC_KEY];
}
if (target === unsafeWindow.Function.apply) {
self = self[MAGIC_KEY];
args[1] = Array.prototype.slice.call(args[1]);
}
if (target === unsafeWindow.document.querySelector) {
self = self[MAGIC_KEY];
}
var usargs = clone(args);
return target.apply(self, usargs);
},
construct: function (target, args) {
args = Array.prototype.slice.call(args);
args.unshift(undefined);
var usargs = clone(args);
var bind = unsafeWindow.Function.prototype.bind;
return new (bind.apply(target, usargs));
},
};
return new Proxy(unsafeWindow, decorator);
})();
return $;
}));
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context, GM) {
var _ = require('lodash');
var core = require('./core.js');
var misc = require('./misc.js');
var dispatcher = require('./dispatcher.js');
var modules = [misc, dispatcher].map(function (v) {
return v.call(null, context, GM);
});
var $ = _.assign.apply(null, modules);
return factory(context, GM, core, $);
};
} else {
factory(context, {
getValue: GM_getValue,
setValue: GM_setValue,
}, context._, context.$);
}
}(this, function (context, GM, _, $) {
'use strict';
var MANIFEST = [
{
name: 'version',
key: 'version',
default_: 0,
verify: function (v) {
return typeof v === 'number' && v >= 0;
},
},
{
name: 'alignCenter',
key: 'align_center',
default_: true,
verify: isBoolean,
},
{
name: 'changeBackground',
key: 'change_background',
default_: true,
verify: isBoolean,
},
{
name: 'externalServerSupport',
key: 'external_server_support',
default_: false,
verify: isBoolean,
},
{
name: 'redirectImage',
key: 'redirect_image',
default_: true,
verify: isBoolean,
},
{
name: 'scaleImage',
key: 'scale_image',
default_: true,
verify: isBoolean,
},
{
name: 'logLevel',
key: 'log_level',
default_: 1,
verify: function (v) {
return typeof v === 'number' && v >= 0 && v <= 2;
},
},
];
var PATCHES = [
function (c) {
var ac = typeof c.alignCenter === 'boolean';
if (typeof c.changeBackground !== 'boolean') {
c.changeBackground = ac ? c.alignCenter : true;
}
if (typeof c.scaleImage !== 'boolean') {
c.scaleImage = ac ? c.alignCenter : true;
}
if (!ac) {
c.alignCenter = true;
}
if (typeof c.redirectImage !== 'boolean') {
c.redirectImage = true;
}
},
function (c) {
if (typeof c.externalServerSupport !== 'boolean') {
c.externalServerSupport = false;
}
},
function (c) {
if (typeof c.logLevel !== 'number') {
c.logLevel = 1;
}
},
];
var window = context.window;
function isBoolean(v) {
return typeof v === 'boolean';
}
function createConfig () {
var c = {};
_.C(MANIFEST).each(function (m) {
Object.defineProperty(c, m.name, {
configurable: true,
enumerable: true,
get: function () {
return GM.getValue(m.key, m.default_);
},
set: function (v) {
GM.setValue(m.key, v);
},
});
});
return c;
}
function senityCheck (c) {
var ok = _.C(MANIFEST).all(function (m) {
return m.verify(c[m.name]);
});
if (!ok) {
c.version = 0;
}
return c;
}
function migrate (c) {
while (c.version < PATCHES.length) {
PATCHES[c.version](c);
++c.version;
}
return c;
}
$.config = migrate(senityCheck(createConfig()));
$.register({
rule: {
host: /^adsbypasser\.github\.io$/,
path: /^\/configure\.html$/,
},
ready: function () {
$.window.commit = function (data) {
data.version = $.config.version;
_.C(data).each(function (v, k) {
$.config[k] = v;
});
};
$.window.render({
version: $.config.version,
options: {
alignCenter: {
type: 'checkbox',
value: $.config.alignCenter,
label: 'Align Center',
help: 'Align image to the center if possible. (default: enabled)',
},
changeBackground: {
type: 'checkbox',
value: $.config.changeBackground,
label: 'Change Background',
help: 'Use Firefox-like image background if possible. (default: enabled)',
},
redirectImage: {
type: 'checkbox',
value: $.config.redirectImage,
label: 'Redirect Image',
help: [
'Directly open image link if possible. (default: enabled)',
'If disabled, redirection will only works on link shortener sites.',
].join('<br/>\n'),
},
scaleImage: {
type: 'checkbox',
value: $.config.scaleImage,
label: 'Scale Image',
help: 'When image loaded, scale it to fit window if possible. (default: enabled)',
},
externalServerSupport: {
type: 'checkbox',
value: $.config.externalServerSupport,
label: 'External Server Support',
help: [
'Send URL information to external server to enhance features (e.g.: captcha resolving). (default: disabled)',
'Affected sites:',
'setlinks.us (captcha)',
].join('<br/>\n'),
},
logLevel: {
type: 'select',
value: $.config.logLevel,
menu: [
[0, '0 (quiet)'],
[1, '1 (default)'],
[2, '2 (verbose)'],
],
label: 'Log Level',
help: [
'Log level in developer console. (default: 1)',
'0 will not print anything in console.',
'1 will only print logs on affected sites.',
'2 will print on any sites.',
].join('<br/>\n'),
},
},
});
},
});
return $;
}));
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context, GM) {
var _ = require('lodash');
var core = require('./core.js');
var dom = require('./dom.js');
var config = require('./config.js');
var link = require('./link.js');
var misc = require('./misc.js');
var modules = [dom, config, link, misc].map(function (v) {
return v.call(null, context, GM);
});
var $ = _.assign.apply(_, modules);
return factory(context, GM, core, $);
};
} else {
factory(context, {
getResourceText: GM_getResourceText,
addStyle: GM_addStyle,
getResourceURL: GM_getResourceURL,
}, context._, context.$);
}
}(this, function (context, GM, _, $) {
'use strict';
var window = context.window;
var document = window.document;
$.openImage = function (imgSrc, options) {
options = options || {};
var replace = !!options.replace;
var referer = !!options.referer;
if (replace) {
replaceBody(imgSrc);
return;
}
if ($.config.redirectImage) {
$.openLink(imgSrc, {
referer: referer,
});
}
};
function enableScrolling () {
var o = document.compatMode === 'CSS1Compat' ? document.documentElement : document.body;
o.style.overflow = '';
};
function toggleShrinking () {
this.classList.toggle('adsbypasser-shrinked');
}
function checkScaling () {
var nw = this.naturalWidth;
var nh = this.naturalHeight;
var cw = document.documentElement.clientWidth;
var ch = document.documentElement.clientHeight;
if ((nw > cw || nh > ch) && !this.classList.contains('adsbypasser-resizable')) {
this.classList.add('adsbypasser-resizable');
this.classList.add('adsbypasser-shrinked');
this.addEventListener('click', toggleShrinking);
} else {
this.removeEventListener('click', toggleShrinking);
this.classList.remove('adsbypasser-shrinked');
this.classList.remove('adsbypasser-resizable');
}
}
function scaleImage (i) {
var style = GM.getResourceText('scaleImage');
GM.addStyle(style);
if (i.naturalWidth && i.naturalHeight) {
checkScaling.call(i);
} else {
i.addEventListener('load', checkScaling);
}
var h;
window.addEventListener('resize', function () {
window.clearTimeout(h);
h = window.setTimeout(checkScaling.bind(i), 100);
});
}
function changeBackground () {
var bgImage = GM.getResourceURL('bgImage');
document.body.style.backgroundColor = '#222222';
document.body.style.backgroundImage = _.T('url(\'{0}\')')(bgImage);
}
function alignCenter () {
var style = GM.getResourceText('alignCenter');
GM.addStyle(style);
}
function injectStyle (d, i) {
$.removeNodes('style, link[rel=stylesheet]');
d.id = 'adsbypasser-wrapper';
i.id = 'adsbypasser-image';
}
function replaceBody (imgSrc) {
if (!$.config.redirectImage) {
return;
}
if (!imgSrc) {
_.warn('false url');
return;
}
_.info(_.T('replacing body with `{0}` ...')(imgSrc));
$.removeAllTimer();
enableScrolling();
document.body = document.createElement('body');
var d = document.createElement('div');
document.body.appendChild(d);
var i = document.createElement('img');
i.src = imgSrc;
d.appendChild(i);
if ($.config.alignCenter || $.config.scaleImage) {
injectStyle(d, i);
}
if ($.config.alignCenter) {
alignCenter();
}
if ($.config.changeBackground) {
changeBackground();
}
if ($.config.scaleImage) {
scaleImage(i);
}
};
return $;
}));
$.register({
rule: {
host: /^www\.4shared\.com$/,
path: /^\/(mp3|get|rar|zip|file|android|software|program)\//,
},
ready: function () {
'use strict';
$.get('http://www.4server.info/find.php', {
data: window.location.href,
}).then(function (data) {
var d = $.toDOM(data);
var c = $('meta[http-equiv=refresh]', d);
var b = c.content.match(/URL=(.+)$/);
var a = b[1];
$.openLink(a);
});
},
});
$.register({
rule: {
host: /^www\.anafile\.com$/,
},
ready: function () {
'use strict';
var b = $.$('#btn_download');
if (b) {
b.disabled = false;
$.removeNodes('div[align=center]');
return;
}
b = $('#plans_free form [type=submit]');
b.click();
},
});
$.register({
rule: {
host: /^(www\.)?arab\.sh$/,
path: /^\/\w+$/,
},
ready: function () {
'use strict';
var f = $('form[name=F1]');
setTimeout(function() {
f.submit();
}, 20000);
},
});
$.register({
rule: {
host: /^(www\.)?coolrom\.com$/,
path: /^\/dlpop\.php$/,
},
ready: function () {
'use strict';
var matches = $.searchScripts(/<form method="POST" action="([^"]+)">/);
$.openLink(matches[1]);
},
});
(function() {
'use strict';
$.register({
rule: {
host: /^(www\.)?dl-protect\.com$/,
path: /\/[A-Z0-9]+/,
},
ready: function () {
if ($.$('#captcha')) {
return;
}
var f = $.$('form[name=ccerure]');
if (f) {
var observer = new MutationObserver(function (mutations) {
var iIn = $('input[id=in]');
for (var i = 0; i < mutations.length; i++) {
if (mutations[i].target.value && mutations[i].attributeName === 'value') {
observer.disconnect();
iIn.value = "Tracking too much hurts users' privacy";
if (!canFastRedirect()) {
return;
}
setTimeout(function() {
f.submit();
}, 600);
break;
}
}
});
var iIn = $('input[id=in]');
if (iIn.value) {
setTimeout(function() {
f.submit();
}, 600);
} else {
observer.observe(iIn, {
attributes: true,
});
}
return;
}
var l = $.$$('#slinks > a');
if (l.size() === 1) {
$.openLink(l.at(0).href);
}
},
});
function canFastRedirect () {
return !$.$('form[name=ccerure]').onsubmit && !$.$('form[name=ccerure] input[name=pwd]');
}
})();
$.register({
rule: {
host: /^(www\.)?embedupload\.com$/,
path: /^\/$/,
query: /^\?\w{2}=\w+$/
},
ready: function () {
'use strict';
var downloadPage = $('.categories a[target=_blank]');
$.openLink(downloadPage);
},
});
$.register({
rule: {
host: /^www\.fileproject\.com\.br$/,
path: /^\/files\/+/,
},
ready: function () {
'use strict';
var m = $.searchScripts(/<a id="down" href="([^"]+)">/);
$.openLink(m[1]);
},
});
$.register({
rule: {
host: /^(www\.)?(firedrive|putlocker)\.com$/,
path: /^\/file\/[0-9A-F]+$/,
},
ready: function () {
'use strict';
var c = $('#confirm_form');
c.submit();
},
});
$.register({
rule: {
host: /^iori\.us$/,
},
ready: function () {
'use strict';
var a = $('#wrapper .tombol a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?jheberg\.net$/,
path: /^\/captcha\//,
},
ready: function () {
'use strict';
$('.dl-button').click();
},
});
$.register({
rule: {
host: /^(www\.)?jheberg\.net$/,
path: /^\/redirect\//,
},
ready: function () {
'use strict';
$.removeAllTimer();
var matches = $.searchScripts(/'slug':\s*'([^']+)',\s*'hoster':\s*'([^']+)'/);
var slug = matches[1];
var hoster = matches[2];
$.post('/get/link/', {
'slug': slug,
'hoster': hoster
}).then(function(response) {
var respJSON = _.parseJSON(response);
$.openLink(respJSON.url);
});
},
});
$.register({
rule: {
host: /^(www\.)?larashare\.com$/,
path: /^\/do\.php$/,
query: /id=\d+/,
},
start: function () {
'use strict';
$.openLink(document.location.href.replace('id=','down='));
},
});
$.register({
rule: {
host: /^(www\.)?maxmirror\.com$/,
path: /^\/redirect\//,
},
ready: function () {
'use strict';
var l = $('#download_url > a');
$.openLink(l.href);
},
});
$.register({
rule: {
host: /^(www\.)?mirrorcreator\.com$/,
path: /^\/showlink\.php$/,
},
ready: function () {
'use strict';
var a = $.$('#redirectlink a');
if (a) {
$.openLink(a.href);
return;
}
a = $('#redirectlink > div.redirecturl');
a = a.innerHTML;
if (!a.match(/^http/)) {
throw new _.AdsBypasserError('not a valid URL');
}
$.openLink(a);
},
});
$.register({
rule: {
host: /^www.mirrorupload.net$/,
},
ready: function () {
'use strict';
var accessForm = $('form[name=form_upload]');
var accessInput = document.createElement('input');
accessInput.type = 'hidden';
accessInput.name = 'access';
accessInput.value = Math.random();
accessForm.appendChild(accessInput);
accessForm.submit();
},
});
$.register({
rule: {
host: /^www\.multiupfile\.com$/,
path: /^\/f\//,
},
ready: function () {
'use strict';
var f = $('#yw0');
f.submit();
},
});
$.register({
rule: {
host: /^mylinkgen\.com$/,
path: /^\/p\/(.+)$/,
},
start: function (m) {
'use strict';
$.openLink('/g/' + m.path[1]);
},
});
$.register({
rule: {
host: /^mylinkgen\.com$/,
path: /^\/g\//,
},
ready: function () {
'use strict';
var a = $('#main-content a.btn.btn-default');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?upmirror\.info$/,
},
ready: function () {
'use strict';
$.setCookie('user', 'ppp');
if ($.$('#countDownText')) {
$.openLink(document.location.toString());
}
},
});
$.register({
rule: {
host: /^(www\.)?vidto\.me$/,
},
ready: function () {
'use strict';
var f = $('#btn_download').form;
setTimeout(function() {
f.submit();
}, 6000);
},
});
$.register({
rule: [
{
host: /^1dl\.biz$/,
path: /^\/(\w)\.php$/,
query: /^\?([\d\/]+)$/,
},
{
host: /^img\.1dl\.biz$/,
path: /^\/(\w)\.php$/,
query: /^\?\w\/([\d\/]+)$/,
},
],
ready: function () {
'use strict';
var a = $('.main-l a');
$.openImage(a.href, {
referer: true,
});
},
});
$.register({
rule: {
host: /^1pics\.ru$/,
},
ready: function () {
'use strict';
var img = $('img[alt$="1Pics.Ru"]');
$.openImage(img.src);
},
});
$.register({
rule: {
host: /^www\.(2i\.(sk|cz)|2imgs\.com)$/,
},
ready: function () {
'use strict';
var img = $('#wrap3 img');
$.openImage(img.src);
},
});
$.register({
rule: [
{
host: /^a\.pomf\.se$/,
path: /^\/.+\.htm$/,
query: /^$/,
},
{
host: /^empireload\.com$/,
path: /^\/sexy\/.+\.htm$/,
query: /^$/,
},
],
ready: function () {
'use strict';
var a = $.$('body > a');
if (a) {
$.openImage(a.href);
return;
}
$.removeNodes('#boxes, iframe');
},
});
$.register({
rule: [
'http://*.abload.de/image.php?img=*',
'http://www.imageup.ru/*/*/*.html',
'http://itmages.ru/image/view/*/*', // different layout same handler
],
ready: function () {
'use strict';
var i = $('#image');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /alabout\.com$/,
},
ready: function () {
'use strict';
$.$$('a').each(function (a) {
if (/http:\/\/(www\.)?alabout\.com\/j\.phtml\?url=/.test(a.href)) {
a.href = a.textContent;
}
});
},
});
$.register({
rule: {
host: /^avenuexxx\.com$/,
path: /^\/archives\//,
},
ready: function () {
'use strict';
var i = $('#content img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^freeimgup\.com$/,
path: /^\/xxx/,
query: /^\?v=([^&]+)/,
},
start: function (m) {
'use strict';
$.openImage('/xxx/images/' + m.query[1]);
},
});
$.register({
rule: {
host: /^(b4he|freeimgup|fullimg)\.com|fastpics\.net|ifap\.co$/,
query: /^\?v=([^&]+)/,
},
start: function (m) {
'use strict';
$.openImage('/images/' + m.query[1]);
},
});
$.register({
rule: {
host: /^bayimg\.com$/,
},
ready: function () {
'use strict';
var i = $('#mainImage');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^beeimg\.com$/,
},
ready: function () {
'use strict';
var img = $('img.img-responsive');
$.openImage(img.src);
},
});
$.register({
rule: 'http://www.bilder-space.de/*.htm',
ready: function () {
'use strict';
$.removeNodes('iframe');
var img = $('img.picture');
$.openImage(img.src);
},
});
$.register({
rule: 'http://www.bilder-upload.eu/show.php?file=*',
ready: function () {
'use strict';
var i = $('input[type=image]');
$.openImage(i.src);
},
});
$.register({
rule: 'http://blackcatpix.com/v.php?*',
ready: function () {
'use strict';
var img = $('td center img');
$.openImage(img.src);
},
});
$.register({
rule: 'http://www.casimages.com/img.php?*',
ready: function () {
'use strict';
var img = $('td a img');
$.openImage(img.src);
},
});
$.register({
rule: {
host: /^www\.x45x\.info|(imadul|mypixxx\.lonestarnaughtygirls)\.com|ghanaimages\.co|imgurban\.info|d69\.in$/,
query: /\?p[mt]=(.+)/,
},
start: function (m) {
'use strict';
$.openImage('/?di=' + m.query[1]);
},
});
$.register({
rule: 'http://javelite.tk/viewer.php?id=*',
ready: function () {
'use strict';
var i = $('table img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^imgchili\.(com|net)|www\.pixhost\.org$/,
path: /^\/show\//,
},
ready: function () {
'use strict';
$.removeNodes('iframe, #ad');
try {
$('#all').style.display = '';
} catch (e) {
}
var o = $('#show_image');
$.openImage(o.src);
},
});
$.register({
rule: 'http://cubeupload.com/im/*',
ready: function () {
'use strict';
var img = $('img.galleryBigImg');
$.openImage(img.src);
},
});
$.register({
rule: {
host: [
/^dailyss\.net$/,
/^(www\.)daily-img\.com$/,
/^(www\.)img-365\.com$/,
/^365-img\.com$/,
],
path: /^\/image\/.+$/,
},
ready: function () {
'use strict';
var i = $('#image-viewer-container img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^(depic\.me|(www\.)?picamatic\.com)$/,
},
ready: function () {
'use strict';
var i = $('#pic');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^img(dino|tiger|zap)\.com$/,
path: /^\/viewer\.php$/,
query: /^\?file=/,
},
ready: function () {
'use strict';
var o = $('#cursor_lupa');
$.openImage(o.src);
},
});
$.register({
rule: 'http://*.directupload.net/file/*.htm',
ready: function () {
'use strict';
var i = $('#ImgFrame');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^(www\.)?empireload\.com$/,
path: /^(\/images(\/files\/\w)?)\/.\.php$/,
query: /^\?link=(.+)$/,
},
start: function (m) {
'use strict';
$.openImage(m.path[1] + '/link/' + m.query[1]);
},
});
$.register({
rule: [
{
host: [
/^emptypix\.com|overdream\.cz$/,
/^www\.sexseeimage\.com$/,
],
path: /^\/image\//,
},
{
host: /^10\.imageleon\.com$/,
path: /^\/img-(.+)\.html$/,
},
{
host: /^sexyxpixels\.com$/,
query: /^\?v=/,
},
],
ready: function () {
'use strict';
var img = $('#full_image');
$.openImage(img.src);
},
});
$.register({
rule: {
host: /^fastpic\.ru$/,
path: /^\/view\//,
},
ready: function () {
'use strict';
var img = $('#picContainer #image');
$.openImage(img.src, {
referer: true,
});
},
});
$.register({
rule: 'http://www.fotolink.su/v.php?id=*',
ready: function () {
'use strict';
var i = $('#content img');
$.openImage(i.src);
},
});
(function () {
'use strict';
function run () {
var i = $('#img_obj');
$.openImage(i.src);
}
$.register({
rule: 'http://fotoo.pl/show.php?img=*.html',
ready: run,
});
$.register({
rule: {
host: /^www\.(fotoszok\.pl|imagestime)\.com$/,
path: /^\/show\.php\/.*\.html$/,
},
ready: run,
});
})();
$.register({
rule: 'http://www.fotosik.pl/pokaz_obrazek/pelny/*.html',
ready: function () {
'use strict';
var i = $('a.noborder img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^freakimage\.com|www\.hostpic\.org$/,
path: /^\/view\.php$/,
query: /^\?filename=([^&]+)/,
},
start: function (m) {
'use strict';
$.openImage('/images/' + m.query[1]);
},
});
$.register({
rule: [
'http://funkyimg.com/viewer.php?img=*',
'http://funkyimg.com/view/*',
],
ready: function () {
'use strict';
var i = $('#viewer img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^(www\.)?gallery(nova|sense)\.se$/,
path: /^\/site\/v\//,
},
ready: function () {
'use strict';
var i = $('#myUniqueImg').parentNode;
$.openImage(i.href);
},
});
$.register({
rule: {
host: /^(www\.)?gallerynova\.se$/,
path: /^\/site\/viewImage\/(\w+)/,
},
ready: function (m) {
'use strict';
var confirm = $.searchScripts(/\$\("#confirmImage"\).val\("([^"]+)"\)/)[1];
$.post('/site/viewConfirmCode/' + m.path[1], {
confirm: confirm
}).then(function (rawJson) {
var json = _.parseJSON(rawJson);
var decodedHTML = document.createTextNode(json.content).data;
var imgURL = decodedHTML.match(/<a href="([^"]+)" target="_blank">/)[1];
$.openImage(imgURL);
});
},
});
(function () {
'use strict';
var hostRule = /^goimagehost\.com$/;
$.register({
rule: {
host: hostRule,
path: /^\/xxx\/images\//,
},
});
$.register({
rule: {
host: hostRule,
path: /^\/xxx\/(.+)/,
},
start: function (m) {
$.openImage('/xxx/images/' + m.path[1]);
},
});
$.register({
rule: {
host: hostRule,
query: /^\?v=(.+)/,
},
start: function (m) {
$.openImage('/xxx/images/' + m.query[1]);
},
});
})();
$.register({
rule: {
host: /www\.(h-animes|adultmove)\.info/,
path: /^\/.+\/.+\/.+\.html$/,
},
ready: function () {
'use strict';
var a = $('.dlbutton2 > a');
$.openImage(a.href);
},
});
$.register({
rule: 'http://hentaimg.com/mg/lndex-1.php?img=*',
ready: function () {
'use strict';
$.openLink('index-1.php' + window.location.search);
},
});
$.register({
rule: 'http://hentaimg.com/mg/index-1.php?img=*',
ready: function () {
'use strict';
var i = $('#content img');
$.openImage(i.src);
},
});
$.register({
rule: 'http://www.hostingpics.net/viewer.php?id=*',
ready: function () {
'use strict';
var i = $('#img_viewer');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^ichan\.org$/,
path: /^\/image\.php$/,
query: /path=(.+)$/,
},
start: function (m) {
'use strict';
$.openImage('/' + m.query[1]);
},
});
$.register({
rule: {
host: /ichan\.org$/,
},
ready: function () {
'use strict';
$.$$('a').each(function (a) {
if (a.href.indexOf('/url/http://') > -1) {
a.href = a.href.replace(/http:\/\/.+\/url\/(?=http:\/\/)/, '');
}
});
},
});
$.register({
rule: 'http://ifotos.pl/zobacz/*',
ready: function () {
'use strict';
var m = $('meta[property="og:image"]');
$.openImage(m.content);
},
});
$.register({
rule: {
host: /^ima\.so$/,
},
ready: function () {
'use strict';
var a = $('#image_block a');
$.openImage(a.href);
},
});
$.register({
rule: [
'http://image18.org/show/*',
'http://screenlist.ru/details.php?image_id=*',
'http://www.imagenetz.de/*/*.html',
],
ready: function () {
'use strict';
var img = $('#picture');
$.openImage(img.src);
},
});
$.register({
rule: {
host: /^image2you\.ru$/,
path: /^\/\d+\/\d+/,
},
ready: function () {
'use strict';
var i = $.$('div.t_tips2 div > img');
if (!i) {
$.openLink('', {
post: {
_confirm: '',
},
});
return;
}
$.openImage(i.src);
},
});
$.register({
rule: 'http://imagearn.com/image.php?id=*',
ready: function () {
'use strict';
var i = $('#img');
$.openImage(i.src);
},
});
$.register({
rule: 'http://www.imagebam.com/image/*',
ready: function () {
'use strict';
var o = $('.image-container img[id]');
$.openImage(o.src, {
replace: true,
});
},
});
$.register({
rule: {
host: /^imageban\.(ru|net)$/,
path: /^\/show\/\d{4}\/\d{2}\/\d{2}\/.+/,
},
ready: function () {
'use strict';
var i = $('#img_obj');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^imageheli\.com|imgtube\.net|pixliv\.com$/,
path: /^\/img-([a-zA-Z0-9\-]+)\..+$/,
},
ready: function () {
'use strict';
var a = $.$('a[rel="lightbox"]');
if (!a) {
$.openLink('', {
post: {
browser_fingerprint: '',
ads: '0',
},
});
return;
}
$.openImage(a.href);
},
});
$.register({
rule: 'http://www.imagehousing.com/image/*',
ready: function () {
'use strict';
var i = $('td.text_item img');
$.openImage(i.src);
},
});
$.register({
rule: 'http://imageno.com/*.html',
ready: function () {
'use strict';
var i = $('#image_div img');
$.openImage(i.src);
},
});
$.register({
rule: 'http://imagepix.org/image/*.html',
ready: function () {
'use strict';
var i = $('img[border="0"]');
$.openImage(i.src);
},
});
(function () {
'use strict';
function run () {
var o = $('#download_box img[id]');
$.openImage(o.src);
}
$.register({
rule: {
host: /^www\.imageporter\.com$/,
path: /^\/\w{12}\/.*\.html$/,
},
ready: run,
});
$.register({
rule: {
host: /^(www\.)?(image(carry|dunk|porter|switch)|pic(leet|turedip|tureturn)|imgspice)\.com|(piclambo|yankoimages)\.net$/,
},
ready: run,
});
})();
$.register({
rule: [
{
host: /^imagescream\.com$/,
path: /^\/img\/soft\//,
},
{
host: /^www\.picturescream\.com$/,
path: /^\/x\//,
},
{
host: [
/^picturescream\.asia$/,
/^uploadimage\.eu$/,
],
},
],
ready: function () {
'use strict';
var i = $('#shortURL-content img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^(imagescream|anonpic|picturevip)\.com|all-poster\.ru$/,
query: /^\?v=/,
},
ready: function () {
'use strict';
var i = $('#imagen img');
$.openImage(i.src);
},
});
(function () {
'use strict';
var host = /^imageshack\.us$/;
$.register({
rule: {
host: host,
path: /^\/photo\/.+\/(.+)\/([^\/]+)/,
},
start: function (m) {
$.openImage(_.T('/f/{0}/{1}/')(m.path[1], m.path[2]));
},
});
$.register({
rule: {
host: host,
path: /^\/f\/.+\/[^\/]+/,
},
ready: function () {
var i = $('#fullimg');
$.openImage(i.src);
},
});
})();
$.register({
rule: 'http://imageshost.ru/photo/*/id*.html',
ready: function () {
'use strict';
var a = $('#bphoto a');
$.openImage(a.href);
},
});
(function () {
'use strict';
function run (rp) {
$.window.jQuery.prototype.append = undefined;
var i = $('img.pic');
$.openImage(i.src, {
replace: rp,
});
}
$.register({
rule: {
host: /^imagenpic\.com$/,
path: /^\/.*\/.+\.html$/,
},
ready: _.P(run, true),
});
$.register({
rule: {
host: /^imagecherry\.com$/,
},
ready: _.P(run, true),
});
$.register({
rule: {
host: /^imagetwist\.com$/,
},
ready: _.P(run, false),
});
})();
$.register({
rule: 'http://imageupper.com/i/?*',
ready: function () {
'use strict';
var i = $('#img');
$.openImage(i.src);
},
});
$.register({
rule: [
'http://*.imagevenue.com/img.php?*',
'http://hotchyx.com/d/adult-image-hosting-view-08.php?id=*',
'http://www.hostingfailov.com/photo/*',
],
ready: function () {
'use strict';
var i = $('#thepic');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^imagezilla\.net$/,
},
ready: function () {
'use strict';
var i = $('#photo');
$.openImage(i.src, {
referer: true,
});
},
});
$.register({
rule: {
host: /^imagik\.fr$/,
path: /^\/view(-rl)?\/(.+)/,
},
start: function (m) {
'use strict';
$.openImage('/uploads/' + m.path[2]);
},
});
$.register({
rule: 'http://img.3ezy.net/*.htm',
ready: function () {
'use strict';
var l = $('link[rel="image_src"]');
$.openImage(l.href);
},
});
$.register({
rule: 'http://img1.imagilive.com/*/*',
ready: function () {
'use strict';
var a = $.$('#page a.button');
if (a) {
$.redirect(a.href);
return;
}
var i = $('#page > img:not([id])');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^img24\.org$/,
},
ready: function () {
'use strict';
var f = $.$('img.img-polaroid + form');
if (f) {
f.submit();
return;
}
f = $('img.img-polaroid');
$.openImage(f.src, {
referer: true,
});
},
});
$.register({
rule: {
host: /^img3x\.net$/,
},
ready: function () {
'use strict';
var f = $.$('form');
if (f) {
f.submit();
return;
}
f = $('#show_image');
$.openImage(f.src);
},
});
$.register({
rule: {
host: /^www\.img(babes|flare)\.com$/,
},
ready: function () {
'use strict';
var i = $.$('input[onclick]');
if (i) {
$.window.Decode();
return;
}
var i = $('#this_image');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^imgbar\.net$/,
path: /^\/img_show\.php$/,
query: /^\?view_id=/,
},
ready: function () {
'use strict';
var i = $('center img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^imgbar\.net$/,
},
ready: function () {
'use strict';
var i = $('div.panel.top form input[name=sid]');
$.openLink('/img_show.php?view_id=' + i.value);
},
});
$.register({
rule: {
host: /^imgbin\.me$/,
path: /^\/view\/([A-Z]+)$/,
},
start: function (m) {
'use strict';
var tpl = _.T('/image/{0}.jpg');
$.openImage(tpl(m.path[1]));
},
});
$.register({
rule: {
host: /^imgbox\.com$/,
path: /^\/[\d\w]+$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var i = $('#img');
$.openImage(i.src);
},
});
(function () {
'use strict';
var host = [
/^(img(fantasy|leech|\.pornleech|smile|say|nemo)|imagedomino)\.com$/,
/^imageporn\.eu$/,
/^0img\.net$/,
];
$.register({
rule: {
host: host,
query: /^\?p=/,
},
ready: function () {
var i = $('#container-home img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: host,
query: /^\?v=/,
},
ready: function () {
if ($.window.confirmAge) {
$.window.confirmAge(1);
return;
}
var i = $('#container-home img');
$.openImage(i.src);
},
});
})();
$.register({
rule: {
host: /^imglocker\.com$/,
path: [
/^(\/\w+)\/(.+)\.html$/,
/^(\/\w+)\/(.+)$/,
],
},
start: function (m) {
'use strict';
var url = _.T('//img.imglocker.com{0}_{1}');
$.openImage(url(m.path[1], m.path[2]));
},
});
(function () {
'use strict';
var pathRule = /^\/([0-9a-z]+)(\.|\/|$)/;
function go (id, pre, next) {
$.openLink('', {
post: {
op: 'view',
id: id,
pre: pre,
next: next,
},
});
}
function getNext1 (i) {
return i.value;
}
function getNext2 (i) {
var next = i.onclick && i.onclick.toString().match(/value='([^']+)'/);
if (next) {
next = next[1];
return next;
} else {
return i.value;
}
}
function helper (id, getNext) {
var i = $.$('input[name="next"]');
if (i) {
var next = getNext(i);
go(id, $('input[name="pre"]').value, next);
return;
}
i = $.$('img.pic');
if (i) {
$.openImage(i.src);
return;
}
_.info('do nothing');
}
$.register({
rule: {
host: [
/^img(paying|mega|zeus|monkey|trex)\.com$/,
/^(www\.)?imgsee\.me$/,
/^imgclick\.net$/,
/^(uploadrr|imageeer|imzdrop|www\.uimgshare)\.com$/,
/^imgdrive\.co$/,
/^cuteimg\.cc$/,
/^imgtiger\.org$/,
/^myimg\.club$/,
/^foxyimg\.link$/,
],
path: pathRule,
},
ready: function (m) {
helper(m.path[1], getNext1);
},
});
$.register({
rule: {
host: [
/^img(rock|town)\.net$/,
/^imgmaze\.com$/,
],
path: pathRule,
},
ready: function (m) {
var d = $.$('[id^=imageviewi] input[type=submit]:not([style])');
if (!d) {
helper(m.path[1], getNext1);
return;
}
d = d.parentNode;
d.submit();
},
});
$.register({
rule: {
host: /^chronos\.to$/,
path: pathRule,
},
ready: function (m) {
helper(m.path[1], getNext2);
},
});
})();
$.register({
rule: {
host: /^(imgsure|picexposed)\.com$/,
},
ready: function () {
'use strict';
var i = $('img.pic');
$.openImage(i.src);
},
});
$.register({
rule: 'http://imgtheif.com/image/*.html',
ready: function () {
'use strict';
var a = $('div.content-container a');
$.openImage(a.href);
},
});
$.register({
rule: {
host: /^imgvault\.pw$/,
path: /^\/view-image\//,
},
ready: function () {
'use strict';
var a = $('article div.span7 a[target="_blank"]');
$.openImage(a.href);
},
});
$.register({
rule: 'http://ipic.su/?page=img&pic=*',
ready: function () {
'use strict';
var i = $('#fz');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /keptarolo\.hu$/,
path: /^(\/[^\/]+\/[^\/]+\.jpg)$/,
},
start: function (m) {
'use strict';
$.openImage('http://www.keptarolo.hu/kep' + m.path[1]);
},
});
$.register({
rule: {
host: /^lostpic\.net$/,
query: /^\?photo=\d+$/,
},
ready: function () {
'use strict';
var i = $('img.notinline.circle');
$.openImage(i.src);
},
});
(function () {
'use strict';
function helper (m) {
$.openImage('/images/' + m.query[1]);
}
$.register({
rule: {
host: [
/^(hentai-hosting|miragepics|funextra\.hostzi|imgrex)\.com$/,
/^bilder\.nixhelp\.de$/,
/^imagecurl\.(com|org)$/,
/^imagevau\.eu$/,
/^img\.deli\.sh$/,
/^imagepong\.info$/,
/^imgdream\.net$/,
/^imgsicily\.it$/,
/^www\.imghere\.net$/,
],
path: /^\/viewer\.php$/,
query: /file=([^&]+)/,
},
start: helper,
});
$.register({
rule: {
host: /^(dwimg|imgsin|www\.pictureshoster)\.com$/,
path: /^\/viewer\.php$/,
query: /file=([^&]+)/,
},
start: function (m) {
$.openImage('/files/' + m.query[1]);
},
});
$.register({
rule: {
host: [
/img(nip|central|cream)\.com$/,
/imageview\.me|244pix\.com|postimg\.net$/,
],
path: /^\/viewerr.*\.php$/,
query: /file=([^&]+)/,
},
start: helper,
});
$.register({
rule: [
'http://www.overpic.net/viewer.php?file=*',
],
ready: function () {
var i = $('#main_img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /(empireload|loadsanook)\.com$/,
query: /file=([^&]+)/,
},
start: function (m) {
$.openImage('files/' + m.query[1]);
},
});
})();
$.register({
rule: {
host: /^www\.mrjh\.org$/,
path: /^\/gallery\.php$/,
query: /^\?entry=(.+)$/,
},
ready: function (m) {
'use strict';
var url = m.query[1];
$.openImage('/' + url);
},
});
$.register({
rule: {
host: /^www\.noelshack\.com$/
},
ready: function () {
var i = $('#elt_to_aff');
$.openImage(i.src);
},
});
$.register({
rule: 'http://pic-money.ru/*.html',
ready: function () {
'use strict';
var f = document.forms[0];
var sig = $('input[name="sig"]', f).value;
var pic_id = $('input[name="pic_id"]', f).value;
var referer = $('input[name="referer"]', f).value;
var url = _.T('/pic.jpeg?pic_id={pic_id}&sig={sig}&referer={referer}');
$.openImage(url({
sig: sig,
pic_id: pic_id,
referer: referer,
}));
},
});
$.register({
rule: 'http://www.pic-upload.de/view-*.html',
ready: function () {
'use strict';
$.removeNodes('.advert');
var i = $('img.preview_picture_2b, img.original_picture_2b');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^pic(2profit|p2)\.com$/,
},
ready: function () {
'use strict';
var i = $('form > #d1 ~ input[name=bigimg]');
$.openImage(i.value);
},
});
$.register({
rule: {
host: /^pic(4|5)you.ru$/
},
ready: function () {
if ($.$('#d1 > img') != null) {
var URLparams = location.href.split("/", 5);
var next = URLparams[0] + '/' + URLparams[1] + '/' + URLparams[2] + '/' + URLparams[3] + '/' + URLparams[4] + '/1/';
$.setCookie('p4yclick','1');
$.openLink(next);
} else {
var i = $('#d1 img').src;
$.openImage(i);
}
},
});
$.register({
rule: {
host: /^(www\.)?piccash\.net$/
},
ready: function () {
var i = $('.container > img');
var m =i.onclick.toString().match(/mshow\('([^']+)'\);/);
$.openImage(m[1]);
},
});
$.register({
rule: [
'http://amateurfreak.org/share-*.html',
'http://amateurfreak.org/share.php?id=*',
'http://images.maxigame.by/share-*.html',
'http://picfox.org/*',
'http://www.euro-pic.eu/share.php?id=*',
'http://www.gratisimage.dk/share-*.html',
'http://xxx.freeimage.us/share.php?id=*',
'http://npicture.net/share-*.html',
'http://www.onlinepic.net/share.php?id=*',
'http://www.pixsor.com/share.php?id=*',
'http://www.pixsor.com/share-*.html',
'http://pixsor.com/XXX/share-*.html',
'http://holdthemoan.net/x/share-*.html',
],
ready: function () {
'use strict';
var o = $('#iimg');
$.openImage(o.src);
},
});
$.register({
rule: 'http://picmoe.net/d.php?id=*',
ready: function () {
'use strict';
var i = $('img');
$.openImage(i.src);
},
});
$.register({
rule: [
'http://pics-money.ru/allpicfree/*',
'http://www.pics-money.ru/allimage/*',
],
});
$.register({
rule: {
host: /^pics-money\.ru$/,
path: /^\/v\.php$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var i = $('center img:not([id])');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^www\.pics-money\.ru$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var i = $('#d1 img');
i = i.onclick.toString();
i = i.match(/mshow\('(.+)'\)/);
i = i[1];
$.openImage(i);
},
});
$.register({
rule: 'http://picshare.geenza.com/pics/*',
ready: function () {
'use strict';
var i = $('#picShare_image_container');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^(www\.)?pimpandhost\.com$/,
path: /^\/image\//,
},
ready: function () {
'use strict';
var a = $('#image_original');
var el = document.createElement('div');
el.innerHTML = a.value;
var img = $('img', el);
$.openImage(img.src);
},
});
$.register({
rule: {
host: /^pixhub\.eu$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe, .adultpage, #FFN_Banner_Holder');
var i = $('.image-show img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^(www\.)?pixroute\.com$/
},
ready: function () {
'use strict';
var o = $('body > center > div > center:nth-child(12) > div > a > img');
$.openImage(o.src);
},
});
$.register({
rule: {
host: /^www\.pornimagex\.com$/,
path: /^\/image\/.*$/,
},
ready: function () {
'use strict';
var img = $('#fixed img.border2px');
$.openImage(img.src);
},
});
$.register({
rule: {
host: /^postimg\.org$/,
},
ready: function () {
'use strict';
var a = $.$('body > center > a > img');
if(a){
$.openLink(a.parentNode.href);
}
var i = $('body > center > img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^prntscr\.com$/
},
ready: function () {
'use strict';
var i = $('#screenshot-image');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^pronpic\.org$/,
},
ready: function () {
'use strict';
var img = $('table.new_table2:nth-child(2) img.link');
var url = img.src.replace('th_', '');
$.openImage(url);
},
});
$.register({
rule: {
host: /^(qrrro|greenpiccs)\.com$/,
path: /^(\/images\/.+)\.html$/,
},
start: function (m) {
'use strict';
$.openImage(m.path[1]);
},
});
(function () {
'use strict';
function ready () {
$.removeNodes('iframe');
var node = $.$('#continuetoimage > form input');
if (node) {
setTimeout(function () {
node.click();
}, 1000);
return;
}
var i = $('img[class^=centred]');
$.openImage(i.src);
}
$.register({
rule: [
{
host: [
/^image(ontime|corn|picsa)\.com$/,
/^(zonezeed|zelje|croft|myhot|bok|hostur|greasy)image\.com$/,
/^img(next|savvy|\.spicyzilla|twyti|xyz|devil|tzar|ban|pu|beer|wet|tornado|kicks|-pay|nimz|binbou)\.com$/,
/^img-(zone|planet)\.com$/,
/^www\.(imagefolks|img(blow|lemon))\.com$/,
/^(picstwist|ericsony|wpc8|uplimg|xxx\.pornprimehd|lexiit|thumbnailus|nimplus|newimagepost|xxximagenow)\.com$/,
/^((i|hentai)\.)?imgslip\.com$/,
/^(i|xxx)\.hentaiyoutube\.com$/,
/^(go|er)imge\.com$/,
/^(like\.)?08lkk\.com$/,
/^(www\.)?\.imgult\.com$/,
/^nudeximg\.com$/,
/imgseeds\.com$/,
/damimage\.com$/,
/imagedecode\.com$/,
/^img(serve|coin|fap|candy|master|-view|run|boom)\.net$/,
/^(gallerycloud|imagelaser|project-photo|pix-link|funimg|golfpit)\.net$/,
/^shotimg\.org$/,
/^img(studio|spot)\.org$/,
/^image(\.adlock|on|team)\.org$/,
/^(drag|teen|mega)image\.org$/,
/^teenshot\.org$/,
/^(hotimages|55888)\.eu$/,
/^img(cloud|mag)\.co$/,
/^pixup\.us$/,
/^(bulkimg|photo-up)\.info$/,
/^img\.yt$/,
/^vava\.in$/,
/^(pixxx|picspornfree|imgload)\.me$/,
/^(porno-pirat|24avarii|loftlm)\.ru$/,
/^hotimage\.uk$/,
/^imgease\.re$/,
/^goimg\.xyz$/,
],
path: /^\/img-.*\.html$/,
},
{
host: [
/^img(run|twyti)\.net$/,
/^imgtwyti\.com$/,
],
path: /^\/t\/img-.*\.html$/,
},
{
host: /^imgking\.co$/,
path: /^\/img-.*\.htmls?$/,
},
{
host: /^imgbb\.net$/,
path: /^\/.-.+$/,
},
],
ready: ready,
});
$.register({
rule: {
host: [
/^www\.img(taxi|adult)\.com$/,
/^www\.imgdrive\.net$/,
],
path: /^\/img-.*\.html$/,
},
start: function () {
var c = $.getCookie('img_c_d') || $.getCookie('img_p_d');
if (c) {
return;
}
$.post(window.location.href.toString(), {
cti: 1,
ref: '',
rc: 1,
}).then(function (data) {
window.location.reload();
});
},
ready: function () {
$.removeNodes('iframe');
var node = $.$('#continuetoimage > form input');
if (node) {
node.click();
node.click();
return;
}
$.resetCookies();
var i = $('img[class^=centred]');
$.openImage(i.src);
},
});
function helper () {
$.window.setTimeout = _.nop;
return $.get(window.location.toString()).then(function (data) {
return $.toDOM(data);
});
}
$.register({
rule: {
host: /^08lkk\.com$/,
path: /^\/Photo\/img-.+\.html$/,
},
start: function () {
helper().then(function (page) {
var i = $('img[class^=centred]', page);
$.openImage(i.src);
});
},
});
$.register({
rule: {
host: /^08lkk\.com$/,
path: /^\/\d+\/img-.*\.html$/,
},
start: function () {
helper().then(function (page) {
var bbcode = $.$('#imagecodes input', page);
bbcode = bbcode.value.match(/.+\[IMG\]([^\[]+)\[\/IMG\].+/);
bbcode = bbcode[1];
bbcode = bbcode.replace('small', 'big');
$.openImage(bbcode);
});
},
});
})();
(function () {
'use strict';
$.register({
rule: {
host: /^www\.imagesnake\.com$/,
path: /^\/index\.php$/,
query: /^\?/,
},
ready: function () {
var a = $('#tablewraper a:nth-child(2)');
$.openImage(a.href);
},
});
function run () {
var i = $('#img_obj');
$.openImage(i.src);
}
$.register({
rule: {
host: /^www\.(imagesnake|freebunker|imgcarry)\.com$/,
path: /^\/show\//,
},
ready: run,
});
$.register({
rule: {
host: /^www\.imagefruit\.com$/,
path: /^\/(img|show)\/.+/,
},
ready: run,
});
})();
$.register({
rule: 'http://www.subirimagenes.com/*.html',
ready: function () {
'use strict';
var i = $('#ImagenVisualizada');
$.openImage(i.src);
},
});
$.register({
rule: 'http://tinypic.com/view.php?pic=*',
ready: function () {
'use strict';
var i = $('#imgElement');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /^www\.turboimagehost\.com$/,
path: /^\/p\//,
},
ready: function () {
'use strict';
var i = $('#imageid');
$.openImage(i.src);
},
});
$.register({
rule: 'http://vvcap.net/db/*.htp',
ready: function () {
'use strict';
var i = $('img');
$.openImage(i.src, {
replace: true,
});
},
});
$.register({
rule: {
host: /^x\.pixfarm\.net$/,
path: /^\/sexy\/\d+\/\d+\/.+\.html$/,
},
ready: function () {
'use strict';
var i = $('img');
$.openImage(i.src);
},
});
$.register({
rule: {
host: /\.yfrog\.com$/,
},
ready: function () {
'use strict';
if (/^\/z/.test(window.location.pathname)) {
var i = $('#the-image img');
$.openImage(i.src);
return;
}
var a = $.$('#continue-link a, #main_image');
if (a) {
$.openLink('/z' + window.location.pathname);
return;
}
},
});
$.register({
rule: {
host: /^01\.nl$/,
},
ready: function () {
'use strict';
var f = $('iframe#redirectframe');
$.openLink(f.src);
},
});
$.register({
rule: {
host: /^(www\.)?1be\.biz$/,
path: /^\/s\.php$/,
query: /^\?(.+)/,
},
start: function (m) {
'use strict';
$.openLink(m.query[1]);
},
});
$.register({
rule: {
host: /^(www\.)?1tiny\.net$/,
path: /\/\w+/
},
ready: function () {
'use strict';
var directUrl = $.searchScripts(/window\.location='([^']+)';/);
if (!directUrl) {
throw new _.AdsBypasserError('script content changed');
}
$.openLink(directUrl[1]);
},
});
$.register({
rule: {
host: /^2ty\.cc$/,
path: /^\/.+/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var a = $('#close');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?3ra\.be$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var f = $.window.fc;
if (!f) {
throw new _.AdsBypasserError('window.fc is undefined');
}
f = f.toString();
f = f.match(/href="([^"]*)/);
if (!f) {
throw new _.AdsBypasserError('url pattern outdated');
}
$.openLink(f[1]);
},
});
$.register({
rule: {
host: /^(www\.)?4fun\.tw$/,
},
ready: function () {
'use strict';
var i = $('#original_url');
$.openLink(i.value);
},
});
$.register({
rule: {
host: /^ad2links\.com$/,
path: /^\/\w-.+$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
$.openLinkByPost(window.location.toString(), {
post: {
image: 'Skip Ad.',
},
});
},
});
(function () {
'use strict';
$.register({
rule: {
host: /^ad7.biz$/,
path: /^\/\d+\/(.*)$/,
},
start: function (m) {
$.removeNodes('iframe');
var redirectLink = m.path[1];
if (!redirectLink.match(/^https?:\/\//)) {
redirectLink = "http://" + redirectLink;
}
$.openLink(redirectLink);
},
});
$.register({
rule: {
host: /^ad7.biz$/,
path: /^\/\w+$/,
},
ready: function () {
$.removeNodes('iframe');
var script = $.searchScripts('var r_url');
var url = script.match(/&url=([^&]+)/);
url = url[1];
$.openLink(url);
},
});
})();
$.register({
rule: {
host: [
/^(www\.)?adb\.ug$/,
/^(www\.)?lynk\.my$/,
/^adyou\.me$/,
],
path: /^(?!\/(?:privacy|terms|contact(\/.*)?|#.*)?$).*$/
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var m = $.searchScripts(/top\.location\.href="([^"]+)"/);
if (m) {
$.openLink(m[1]);
return;
}
m = $.searchScripts(/\{_args.+\}/);
if (!m) {
throw new _.AdsBypasserError('script content changed');
}
m = eval('(' + m[0] + ')');
var url = window.location.pathname + '/skip_timer';
var i = setInterval(function () {
$.post(url, m).then(function (text) {
var jj = _.parseJSON(text);
if (!jj.errors && jj.messages) {
clearInterval(i);
$.openLink(jj.messages.url);
}
});
}, 1000);
},
});
(function () {
'use strict';
function getTokenFromRocketScript () {
var a = $.searchScripts(/var eu = '(?!false)(.*)'/);
return a ? a[1] : null;
}
$.register({
rule: {
path: /\/locked$/,
query: /url=([^&]+)/,
},
start: function (m) {
$.resetCookies();
var url = decodeURIComponent(m.query[1]);
if (url.match(/^http/)) {
$.openLink(url);
} else {
$.openLink('/' + url);
}
},
});
$.register({
rule: [
'http://u.shareme.in/*',
'http://server.sbenny.com/*',
function () {
var h = $.$('html[id="adfly_html"]');
var b = $.$('body[id="home"]');
if (h && b) {
return true;
} else {
return null;
}
},
],
start: function () {
$.window.document.write = _.nop;
},
ready: function () {
var h = $.$('#adfly_html'), b = $.$('#home');
if (!h || !b || h.nodeName !== 'HTML' || b.nodeName !== 'BODY') {
return;
}
$.removeNodes('iframe');
$.window.cookieCheck = _.nop;
h = $.window.eu || getTokenFromRocketScript();
if (!h) {
h = $('#adfly_bar');
$.window.close_bar();
return;
}
var a = h.indexOf('!HiTommy');
if (a >= 0) {
h = h.substring(0, a);
}
a = '';
b = '';
for (var i = 0; i < h.length; ++i) {
if (i % 2 === 0) {
a = a + h.charAt(i);
} else {
b = h.charAt(i) + b;
}
}
h = atob(a + b);
h = h.substr(2);
if (location.hash) {
h += location.hash;
}
$.openLink(h);
},
});
$.register({
rule: 'http://ad7.biz/*',
ready: function () {
$.removeNodes('iframe');
$.resetCookies();
var script = $.searchScripts('var r_url');
var url = script.match(/&url=([^&]+)/);
url = url[1];
$.openLink(url);
},
});
})();
$.register({
rule: {
host: /^(www\.)?adfe\.es$/,
path: /^\/\w+$/,
},
ready: function () {
'use strict';
var f = $('#frmvideo');
if (!f.STEP4) {
return;
}
f.submit();
},
});
$.register({
rule: 'http://adfoc.us/*',
ready: function () {
'use strict';
var root = document.body;
var observer = new MutationObserver(function (mutations) {
var o = $.$('#showSkip');
if (o) {
observer.disconnect();
o = o.querySelector('a');
$.openLink(o.href);
}
});
observer.observe(root, {
childList: true,
subtree: true,
});
},
});
$.register({
rule: {
host: /^(www\.)?adjet\.biz$/,
},
ready: function () {
'use strict';
var m = $.searchScripts(/href=(\S+)/);
if (!m) {
throw new _.AdsBypasserError('site changed');
}
$.openLink(m[1]);
},
});
$.register({
rule: {
host: /^adlock\.org$/,
},
ready: function () {
'use strict';
var a = $.$('#xre a.xxr, #downloadButton1');
if (a) {
$.openLink(a.href);
return;
}
a = $.window.fileLocation;
if (a) {
$.openLink(a);
}
},
});
$.register({
rule: {
host: /^(www\.)?adlot\.us$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var script = $.searchScripts('form');
var p = /name='([^']+)' value='([^']+)'/g;
var opt = {
image: ' ',
};
var tmp = null;
while (tmp = p.exec(script)) {
opt[tmp[1]] = tmp[2];
}
$.openLink('', {
path: opt,
});
},
});
$.register({
rule: {
host: /^(www\.)?ah-informatique\.com$/,
path: /^\/ZipUrl/,
},
ready: function () {
'use strict';
var a = $('#zip3 a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^aka\.gr$/
},
ready: function () {
'use strict';
var l = $('iframe#yourls-frame');
$.openLink(l.src);
},
});
$.register({
rule: {
host: /^al\.ly$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe, #CashSlideDiv, #ct_catfish');
var a = $('#modal-shadow');
a.style.display = 'block';
a = $('#modal-alert');
a.style.left = 0;
a.style.top = 80;
a.style.display = 'block';
},
});
$.register({
rule: {
host: /^(www\.)?allkeyshop\.com$/,
},
ready: function (m) {
'use strict';
var matches = $.searchScripts(/window\.location\.href = "([^"]+)"/);
$.openLink(matches[1]);
$.removeAllTimer();
},
});
$.register({
rule: {
host: /^anonymbucks\.com$/,
},
ready: function () {
'use strict';
var a = $('#boton-continuar');
a.click();
},
});
$.register({
rule: {
host: [
/^(awet|sortir)\.in$/,
/^st\.benfile\.com$/,
/^st\.azhie\.net$/,
],
},
ready: function () {
'use strict';
var m = $.searchScripts(/window\.location="([^"]*)";/);
$.openLink(m[1]);
},
});
(function () {
'use strict';
$.register({
rule: {
host: [
/^bc\.vc$/,
/^linc\.ml$/,
],
path: /^.+(https?:\/\/.+)$/,
},
start: function (m) {
$.openLink(m.path[1] + document.location.search + document.location.hash);
},
});
function decompress (script, unzip) {
if (!unzip) {
return script;
}
var matches = script.match(/eval(.*)/);
matches = matches[1];
script = eval(matches);
return script;
}
function searchScript (unzip) {
var content = $.searchScripts('make_log');
if (content) {
return {
direct: false,
script: decompress(content, unzip),
};
}
content = $.searchScripts('click_log');
if (content) {
return {
direct: true,
script: decompress(content, unzip),
};
}
throw _.AdsBypasserError('script changed');
}
function knockServer (script, dirtyFix) {
var matches = script.match(/\$.post\('([^']*)'[^{]+(\{opt:'make_log'[^}]+\}\}),/i);
var make_url = matches[1];
var make_opts = eval('(' + matches[2] + ')');
var i = setInterval(function () {
$.post(make_url, make_opts).then(function (text) {
if (dirtyFix) {
text = text.match(/\{.+\}/)[0];
}
var jj = _.parseJSON(text);
if (jj.message) {
clearInterval(i);
$.openLink(jj.message.url);
}
});
}, 1000);
}
function knockServer2 (script) {
var post = $.window.$.post;
$.window.$.post = function (a, b, c) {
if (typeof c !== 'function') {
return;
}
setTimeout(function () {
var data = {
error: false,
message: {
url: '#',
},
};
c(JSON.stringify(data));
}, 1000);
};
var matches = script.match(/\$.post\('([^']*)'[^{]+(\{opt:'make_log'[^}]+\}\}),/i);
var make_url = matches[1];
var make_opts = eval('(' + matches[2] + ')');
function makeLog () {
make_opts.opt = 'make_log';
post(make_url, make_opts, function (text) {
var data = _.parseJSON(text);
_.info('make_log', data);
if (!data.message) {
checksLog();
return;
}
$.openLink(data.message.url);
});
}
function checkLog () {
make_opts.opt = 'check_log';
post(make_url, make_opts, function (text) {
var data = _.parseJSON(text);
_.info('check_log', data);
if (!data.message) {
checkLog();
return;
}
makeLog();
});
}
function checksLog () {
make_opts.opt = 'checks_log';
post(make_url, make_opts, function () {
_.info('checks_log');
checkLog();
});
}
checksLog();
}
$.register({
rule: {
host: /^bc\.vc$/,
path: /^\/.+/,
},
ready: function () {
$.removeNodes('iframe');
var result = searchScript(false);
if (!result.direct) {
knockServer2(result.script);
} else {
result = result.script.match(/top\.location\.href = '([^']+)'/);
if (!result) {
throw new _.AdsBypasserError('script changed');
}
result = result[1];
$.openLink(result);
}
},
});
function run (dirtyFix) {
$.removeNodes('iframe');
var result = searchScript(true);
if (!result.direct) {
knockServer(result.script,dirtyFix);
} else {
result = result.script.match(/top\.location\.href='([^']+)'/);
if (!result) {
throw new _.AdsBypasserError('script changed');
}
result = result[1];
$.openLink(result);
}
}
$.register({
rule: {
host: /^adcrun\.ch$/,
path: /^\/\w+$/,
},
ready: function () {
$.removeNodes('.user_content');
var rSurveyLink = /http\.open\("GET", "api_ajax\.php\?sid=\d*&ip=[^&]*&longurl=([^"]+)" \+ first_time, (?:true|false)\);/;
var l = $.searchScripts(rSurveyLink);
if (l) {
$.openLink(l[1]);
return;
}
run(true);
},
});
$.register({
rule: {
host: [
/^1tk\.us$/,
/^gx\.si$/,
/^adwat\.ch$/,
/^(fly2url|urlwiz|xafox)\.com$/,
/^(zpoz|ultry)\.net$/,
/^(wwy|myam)\.me$/,
/^ssl\.gs$/,
/^lin(c\.ml|k\.tl)$/,
/^hit\.us$/,
/^shortit\.in$/,
/^(adbla|tl7)\.us$/,
/^www\.adjet\.eu$/,
/^srk\.gs$/,
/^cun\.bz$/,
/^miniurl\.tk$/,
/^vizzy\.es$/,
/^kazan\.vc$/,
],
path: /^\/.+/,
},
ready: run,
});
$.register({
rule: {
host: /^adtr\.im|ysear\.ch|xip\.ir$/,
path: /^\/.+/,
},
ready: function () {
var a = $.$('div.fly_head a.close');
var f = $.$('iframe.fly_frame');
if (a && f) {
$.openLink(f.src);
} else {
run();
}
},
});
$.register({
rule: {
host: /^ad5\.eu$/,
path: /^\/[^.]+$/,
},
ready: function() {
$.removeNodes('iframe');
var s = searchScript(true);
var m = s.script.match(/(<form name="form1"method="post".*(?!<\\form>)<\/form>)/);
if (!m) {return;}
m = m[1];
var tz = -(new Date().getTimezoneOffset()/60);
m = m.replace("'+timezone+'",tz);
var d = document.createElement('div');
d.setAttribute('id','AdsBypasserFTW');
d.setAttribute('style', 'display:none;');
d.innerHTML = m;
document.body.appendChild(d);
$('#AdsBypasserFTW > form[name=form1]').submit();
},
});
$.register({
rule: {
host: /^tr5\.in$/,
path: /^\/.+/,
},
ready: function () {
run(true);
},
});
})();
$.register({
rule: {
host: /^(www\.)?biglistofwebsites\.com$/,
path: /^\/go\/(\w+\.\w+)$/
},
start: function (m) {
'use strict';
$.openLink('http://' + m.path[1]);
},
});
$.register({
rule: 'http://www.bild.me/bild.php?file=*',
ready: function () {
'use strict';
var i = $('#Bild');
$.openLink(i.src);
},
});
$.register({
rule: 'http://bildr.no/view/*',
ready: function () {
'use strict';
var i = $('img.bilde');
$.openLink(i.src);
},
});
$.register({
rule: {
host: /^(www\.)?([a-zA-Z0-9]+\.)?binbox\.io$/,
path: /\/o\/([a-zA-Z0-9]+)/,
},
start: function (m) {
'use strict';
var direct_link = window.atob(m.path[1]);
$.openLink(direct_link);
},
});
$.register({
rule: {
host: /^bk-ddl\.net$/,
path: /^\/\w+$/,
},
ready: function (m) {
'use strict';
var l = $('a.btn-block.redirect').href;
var b64 = l.match(/\?r=(\w+={0,2}?)/);
$.openLink(atob(b64[1]));
},
});
$.register({
rule: {
host: /^(www\.)?boxcash\.net$/,
path: /^\/[\w~]+$/,
},
ready: function () {
'use strict';
var m = $.searchScripts(/\'\/ajax_link\.php\',\s*\{key:\s*'(\w+)',\s*url:\s*'(\d+)',\s*t:\s*'(\d+)',\s*r:\s*'(\w*)'\}/);
if (!m) {
return;
}
$.post('/ajax_link.php', {
key: m[1],
url: m[2],
t: m[3],
r: m[4],
}).then(function (response) {
var l = response.match(/window(?:.top.window)\.location="([^"]+)"/);
$.openLink(l[1]);
});
},
});
$.register({
rule: {
host: /^(www\.)?boxcash\.net$/,
path: /^\/redirect\.html$/,
query: /url=(.+)$/,
},
start: function (m) {
'use strict';
var l = decodeURIComponent(m.query[1]);
$.openLink(l);
},
});
$.register({
rule: {
host: /^(www\.)?(buz|vzt)url\.com$/,
},
ready: function () {
'use strict';
var frame = $('frame[scrolling=yes]');
$.openLink(frame.src);
},
});
$.register({
rule: {
host: /^(cf|ex|xt)\d\.(me|co)$/,
},
ready: function (m) {
'use strict';
$.removeNodes('iframe');
var a = $('#skip_button');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^cf\.ly$/,
path: /^\/[^\/]+$/,
},
start: function (m) {
'use strict';
$.removeNodes('iframe');
$.openLink('/skip' + m.path[0]);
},
});
$.register({
rule: {
host: /^(www\.)?cli\.gs$/,
},
ready: function () {
'use strict';
var a = $('a.RedirectLink');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?clictune\.com$/,
path: /^\/id=\d+/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var matches = $.searchScripts(/<a href="http:\/\/(?:www.)?clictune\.com\/redirect\.php\?url=([^&]+)&/);
var url = decodeURIComponent(matches[1]);
$.openLink(url);
},
});
$.register({
rule: {
host: /^clk\.im$/,
},
ready: function (m) {
'use strict';
$.removeNodes('iframe');
var matches = $.searchScripts(/\$\("\.countdown"\)\.attr\("href","([^"]+)"\)/);
$.openLink(matches[1]);
},
});
$.register({
rule: {
host: /^(?:(\w+)\.)?(coinurl\.com|cur\.lv)$/,
path: /^\/([-\w]+)$/
},
ready: function (m) {
'use strict';
$.removeNodes('iframe');
var host = 'http://cur.lv/redirect_curlv.php';
var param = m.host[1] === undefined ? {
code: m.path[1],
} : {
zone: m.host[1],
name: m.path[1],
};
$.get(host, param).then(function(mainFrameContent) {
try {
var docMainFrame = $.toDOM(mainFrameContent);
} catch (e) {
throw new _.AdsBypasserError('main frame changed');
}
var rExtractLink = /onclick="open_url\('([^']+)',\s*'go'\)/;
var innerFrames = $.$$('iframe', docMainFrame).each(function (currFrame) {
var currFrameAddr = currFrame.getAttribute('src');
$.get(currFrameAddr).then(function(currFrameContent) {
var aRealLink = rExtractLink.exec(currFrameContent);
if (aRealLink === undefined || aRealLink[1] === undefined) {
return;
}
var realLink = aRealLink[1];
$.openLink(realLink);
});
});
});
},
});
$.register({
rule: {
host: /^comyonet\.com$/,
},
ready: function () {
'use strict';
var input = $('input[name="enter"]');
input.click();
},
});
$.register({
rule: {
host: /^(www\.)?cvc\.la$/,
path: /^\/\w+$/,
},
start: function () {
'use strict';
$.post(document.location.href, {
hidden: 24, // Either 24 or 276, but both seem to work anyway
image: ' ',
}).then(function (text) {
var matches = text.match(/window\.location\.replace\('([^']+)'\);/);
$.openLink(matches[1]);
});
},
});
$.register({
rule: {
host: /^(www\.)?dapat\.in$/,
},
ready: function () {
'use strict';
var f = $('iframe[name=pagetext]');
$.openLink(f.src);
},
});
$.register({
rule: {
host: /^(www\.)?dd\.ma$/,
},
ready: function (m) {
'use strict';
var i = $.$('#mainframe');
if (i) {
$.openLink(i.src);
return;
}
var a = $('#btn_open a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?dereferer\.website$/,
query: /^\?(.+)/,
},
start: function (m) {
'use strict';
$.openLink(m.query[1]);
},
});
$.register({
rule: {
host: /^dikit\.in$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var a = $('.disclaimer a');
$.openLink(a.href);
},
});
$.register({
rule: 'http://www.dumppix.com/viewer.php?*',
ready: function () {
'use strict';
var i = $.$('#boring');
if (i) {
$.openLink(i.src);
return;
}
i = $('table td:nth-child(1) a');
$.openLink(i.href);
},
});
$.register({
rule: {
host: /^durl\.me$/,
},
ready: function () {
'use strict';
var a = $('a[class="proceedBtn"]');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /easyurl\.net|(atu|clickthru|redirects|readthis)\.ca|goshrink\.com$/,
},
ready: function () {
'use strict';
var f = $('frame[name=main]');
$.openLink(f.src);
},
});
$.register({
rule: {
host: /empireload\.com$/,
path: /^\/plugin\.php$/,
query: /^\?id=linkout&url=([^&]+)$/,
},
start: function (m) {
$.openLink(m.query[1]);
},
});
$.register({
rule: {
host: [
/^ethi\.in$/,
/^st\.wardhanime\.net$/,
],
path: /^\/i\/\d+$/,
},
ready: function () {
'use strict';
var a = $('#wrapper > [class^="tombo"] > a[target="_blank"]');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?filoops.info$/
},
ready: function () {
'use strict';
var a = $('#text > center a, #text > div[align=center] a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^fit\.sh$/,
},
ready: function () {
'use strict';
$.removeNodes('.container-body');
var m = $.searchScripts(/token="([^"]+)"/);
if (!m) {
throw new _.AdsBypasserError('site changed');
}
m = m[1];
var interLink = '/go/' + m + '?fa=15466&a=' + window.location.hash.substr(1);
setTimeout(function () {
$.openLink(interLink);
}, 6000);
},
});
$.register({
rule: {
host: /^www\.forbes\.com$/,
},
ready: function () {
'use strict';
var o = $.window.ox_zones;
if (o) {
$.openLink(o.page_url);
}
},
});
$.register({
rule: {
host: /^www\.free-tv-video-online\.info$/,
path: /^\/interstitial2\.html$/,
query: /lnk=([^&]+)/,
},
start: function (m) {
'use strict';
var url = decodeURIComponent(m.query[1]);
$.openLink(url);
},
});
(function () {
'use strict';
$.register({
rule: {
host: /^(www\.)?fundurl\.com$/,
query: /i=([^&]+)/,
},
start: function (m) {
$.openLink(m.query[1]);
},
});
$.register({
rule: {
host: /^(www\.)?fundurl\.com$/,
path: /^\/(go-\w+|load\.php)$/,
},
ready: function () {
var f = $('iframe[name=fpage3]');
$.openLink(f.src);
},
});
})();
(function () {
var hosts = /^gca\.sh|repla\.cr$/;
$.register({
rule: {
host: hosts,
path: /^\/adv\/\w+\/(.*)$/,
query: /^(.*)$/,
hash: /^(.*)$/,
},
start: function (m) {
'use strict';
var l = m.path[1] + m.query[1] + m.hash[1];
$.openLink(l);
},
});
$.register({
rule: {
host: hosts,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var jQuery = $.window.$;
setTimeout(function () {
jQuery("#captcha-dialog").dialog("open");
}, 1000);
},
});
})();
$.register({
rule: {
host: /^gkurl\.us$/,
},
ready: function () {
'use strict';
var iframe = $('#gkurl-frame');
$.openLink(iframe.src);
},
});
$.register({
rule: {
host: /^u\.go2\.me$/,
},
ready: function () {
'use strict';
var iframe = $('iframe');
$.openLink(iframe.src);
},
});
$.register({
rule: {
host: /^hotshorturl\.com$/,
},
ready: function () {
'use strict';
var frame = $('frame[scrolling=yes]');
$.openLink(frame.src);
},
});
$.register({
rule: {
host: /^(www\.)?(ilix\.in|priva\.us)$/,
path: /\/(\w+)/,
},
ready: function (m) {
'use strict';
var realHost = 'ilix.in';
if (m.host[2] !== realHost) {
var realURL = location.href.replace(m.host[2], realHost);
$.openLink(realURL);
return;
}
var f = $.$('iframe[name=ifram]');
if (f) {
$.openLink(f.src);
return;
}
if (!$.$('img#captcha')) {
$('form[name=frm]').submit();
}
},
});
$.register({
rule: {
host: /^itw\.me$/,
path: /^\/r\//,
},
ready: function () {
'use strict';
var f = $('.go-form');
f.submit();
},
});
$.register({
rule: {
host: /^ity\.im$/,
},
ready: function () {
'use strict';
var f = $.$('#main');
if (f) {
$.openLink(f.src);
return;
}
f = $.$$('frame').find(function (frame) {
if (frame.src.indexOf('interheader.php') < 0) {
return _.none;
}
return frame.src;
});
if (f) {
$.openLink(f.payload);
return;
}
f = $.searchScripts(/krypted=([^&]+)/);
if (!f) {
throw new _.AdsBypasserError('site changed');
}
f = f[1];
var data = $.window.des('ksnslmtmk0v4Pdviusajqu', $.window.hexToString(f), 0, 0);
if (data) {
$.openLink('http://ity.im/1104_21_50846_' + data);
}
},
});
$.register({
rule: {
host: /^(www\.)?kingofshrink\.com$/,
},
ready: function () {
'use strict';
var l = $('#textresult > a');
$.openLink(l.href);
},
});
$.register({
rule: {
host: /^(www\.)?leechbd\.tk$/,
path: /^\/Shortener\/(\w+)$/,
},
start: function (m) {
'use strict';
$.get('/Shortener/API/read/get', {id: m.path[1], type: 'json'}).then(function (text) {
var r = _.parseJSON(text);
if (r.success == true && r.data.full) {
$.openLink(r.data.full);
} else {
_.warn('API Error ' + r.error.code + ' : ' + r.error.msg);
}
});
},
});
$.register({
rule: 'http://www.lienscash.com/l/*',
ready: function () {
'use strict';
var a = $('#redir_btn');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?\w+\.link-protector\.com$/,
},
ready: function (m) {
'use strict';
var f = $('form[style="font-weight:normal;font-size:12;font-family:Verdana;"]');
$.openLink(f.action);
},
});
$.register({
rule: {
host: /^link\.animagz\.org$/,
},
ready: function () {
'use strict';
var a = $('.redirect');
a = a.href.match(/\?r=(.+)$/);
a = atob(a[1]);
$.openLink(a);
},
});
$.register({
rule: {
host: /^(www\.)?link\.im$/,
path: /^\/\w+$/,
},
start: function () {
'use strict';
$.post(document.location.href, {
image: 'Continue',
}).then(function (text) {
var m = text.match(/window\.location\.replace\('([^']+)'\)/);
$.openLink(m[1]);
});
},
});
$.register({
rule: {
host: /\.link2dollar\.com$/,
path: /^\/\d+$/,
},
ready: function () {
'use strict';
var m = $.searchScripts(/var rlink = '([^']+)';/);
if (!m) {
throw new _.AdsBypasserError('site changed');
}
m = m[1];
$.openLink(m);
},
});
$.register({
rule: {
host: /^link2you\.ru$/,
path: /^\/\d+\/(.+)$/,
},
start: function (m) {
'use strict';
var url = m.path[1];
if (!url.match(/^https?:\/\//)) {
url = '//' + url;
}
$.openLink(url);
},
});
(function () {
'use strict';
function sendRequest (opts) {
return $.post('/ajax/r.php', opts).then(function (data) {
if (data.length <= 1) {
return sendRequest(opts);
}
var a = $.toDOM(data);
a = $('a', a);
return a.href;
});
}
$.register({
rule: {
host: /^link5s\.com$/,
path: /^\/([^\/]+)$/,
},
ready: function (m) {
$.window.$ = null;
var i = $('#iframeID');
var opts = {
page: m.path[1],
advID: i.dataset.cmp,
u: i.dataset.u,
};
$.removeNodes('iframe');
sendRequest(opts).then(function (url) {
$.openLink(url);
});
},
});
})();
(function() {
function ConvertFromHex (str) {
var result = [];
while (str.length >= 2) {
result.push(String.fromCharCode(parseInt(str.substring(0, 2), 16)));
str = str.substring(2, str.length);
}
return result.join("");
}
var Encode = function (str) {
var s = [], j = 0, x, res = '', k = arguments.callee.toString().replace(/\s+/g, "");
for (var i = 0; i < 256; i++) {
s[i] = i;
}
for (i = 0; i < 256; i++) {
j = (j + s[i] + k.charCodeAt(i % k.length)) % 256;
x = s[i];
s[i] = s[j];
s[j] = x;
}
i = 0;
j = 0;
for (var y = 0; y < str.length; y++) {
i = (i + 1) % 256;
j = (j + s[i]) % 256;
x = s[i];
s[i] = s[j];
s[j] = x;
res += String.fromCharCode(str.charCodeAt(y) ^ s[(s[i] + s[j]) % 256]);
}
return res;
};
var hostRules = [
/^(([\w]{8}|www)\.)?(allanalpass|cash4files|drstickyfingers|fapoff|freegaysitepass|(gone|tube)viral|(pic|tna)bucks|whackyvidz|fuestfka)\.com$/,
/^(([\w]{8}|www)\.)?(a[mn]y|deb|dyo|sexpalace)\.gs$/,
/^(([\w]{8}|www)\.)?(filesonthe|poontown|seriousdeals|ultrafiles|urlbeat|eafyfsuh)\.net$/,
/^(([\w]{8}|www)\.)?freean\.us$/,
/^(([\w]{8}|www)\.)?galleries\.bz$/,
/^(([\w]{8}|www)\.)?hornywood\.tv$/,
/^(([\w]{8}|www)\.)?link(babes|bucks)\.com$/,
/^(([\w]{8}|www)\.)?(megaline|miniurls|qqc|rqq|tinylinks|yyv|zff)\.co$/,
/^(([\w]{8}|www)\.)?(these(blog|forum)s)\.com$/,
/^(([\w]{8}|www)\.)?youfap\.me$/,
/^warning-this-linkcode-will-cease-working-soon\.www\.linkbucksdns\.com$/,
];
(function () {
'use strict';
function generateRandomIP () {
return [0,0,0,0].map(function () {
return Math.floor(Math.random() * 256);
}).join('.');
}
function findToken (context) {
var script = $.searchScripts(' var f = window[\'init\' + \'Lb\' + \'js\' + \'\']', context);
if (!script) {
_.warn('pattern changed');
return null;
}
var adurl = script.match(/AdUrl\s*:\s*'([^']+)'/);
if (!adurl) {
return null;
}
adurl = adurl[1];
var m1 = script.match(/AdPopUrl\s*:\s*'.+\?[^=]+=([\w\d]+)'/);
var m2 = script.match(/Token\s*:\s*'([\w\d]+)'/);
var token = m1[1] || m2[1];
var m = script.match(/=\s*(\d+);/);
var ak = parseInt(m[1], 10);
var re = /\+\s*(\d+);/g;
var tmp = null;
while((m = re.exec(script)) !== null) {
tmp = m[1];
}
ak += parseInt(tmp, 10);
return {
t: token,
aK: ak,
adurl: adurl,
};
}
function sendRequest (token) {
$.get(token.adurl);
delete token.adurl;
token.a_b = false;
_.info('waiting the interval');
return _.wait(5000).then(function () {
_.info('sending token: %o', token);
return $.get('/intermission/loadTargetUrl', token, {
'X-Requested-With': _.none,
Origin: _.none,
});
}).then(function (text) {
var data = _.parseJSON(text);
_.info('response: %o', data);
if (!data.Success && data.Errors[0] === 'Invalid token') {
_.warn('got invalid token');
return retry();
}
if (data.AdBlockSpotted) {
_.warn('adblock spotted');
return;
}
if (data.Success && !data.AdBlockSpotted && data.Url) {
return data.Url;
}
});
}
function retry () {
return $.get(window.location.toString(), {}, {
'X-Forwarded-For': generateRandomIP(),
}).then(function (text) {
var d = $.toDOM(text);
var t = findToken(d);
if (!t) {
return _.wait(1000).then(retry);
}
return sendRequest(t);
});
}
$.register({
rule: {
host: hostRules,
path: /^\/\w+\/url\/(.+)$/,
},
ready: function(m) {
$.removeAllTimer();
$.resetCookies();
$.removeNodes('iframe');
var url = m.path[1] + window.location.search;
var match = $.searchScripts(/UrlEncoded: ([^,]+)/);
if (match && match[1] === 'true') {
url = Encode(ConvertFromHex(url));
}
$.openLink(url);
}
});
$.register({
rule: {
host: hostRules,
},
start: function () {
$.window.XMLHttpRequest = _.nop;
},
ready: function () {
$.removeAllTimer();
$.resetCookies();
$.removeNodes('iframe');
if (window.location.pathname.indexOf('verify') >= 0) {
var path = window.location.pathname.replace('/verify', '');
$.openLink(path);
return;
}
var token = findToken(document);
sendRequest(token).then(function (url) {
$.openLink(url);
});
},
});
$.register({
rule: {
query: /^(.*)[?&]_lbGate=\d+$/,
},
start: function (m) {
$.setCookie('_lbGatePassed', 'true');
$.openLink(window.location.pathname + m.query[1]);
},
});
})();
})();
$.register({
rule: {
host: [
/^www\.linkdecode\.com$/,
/^www\.fastdecode\.com$/,
],
path: /^\/$/,
query: /^\?(.+)$/,
},
ready: function (m) {
'use strict';
$.removeNodes('iframe');
var lnk = m.query[1];
if (m.query[1].match(/^https?:\/\//)) {
$.openLink(lnk);
return;
}
var b = $.$('#popup');
if (b && b.href) {
$.openLink(b.href);
return;
}
b = $('#m > .Visit_Link');
b = b.onclick.toString().match(/window\.open\(\'([^']+)\'/);
if (!b) {
throw new _.AdsBypasser('pattern changed');
}
lnk = b[1].match(/\?(https?:\/\/.*)$/);
if (lnk) {
$.openLink(lnk[1]);
return;
}
$.openLink(b[1]);
},
});
$.register({
rule: {
host: /^(www\.)?linkdrop\.net$/,
},
ready: function () {
'use strict';
var matches = $.searchScripts(/\$\("a\.redirect"\)\.attr\("href","([^"]+)"\)\.text\("Continue"\);/);
if (!matches) {
return;
}
var l = matches[1];
$.openLink(l);
},
});
$.register({
rule: {
host: /^linkshrink\.net$/,
path: /^\/[a-zA-Z0-9]+$/,
},
start: function () {
'use strict';
$.window._impspcabe = 0;
},
ready: function () {
'use strict';
var l = $('#skip .bt');
$.openLink(l.href);
},
});
$.register({
rule: {
host: /^linkshrink\.net$/,
path: /=(.+)$/,
},
start: function (m) {
'use strict';
$.openLink(m.path[1]);
},
});
$.register({
rule: 'http://lix.in/-*',
ready: function () {
'use strict';
var i = $.$('#ibdc');
if (i) {
return;
}
i = $.$('form');
if (i) {
i.submit();
return;
}
i = $('iframe');
$.openLink(i.src);
},
});
$.register({
rule: {
host: /^lnk\.in$/,
},
ready: function () {
'use strict';
var a = $('#divRedirectText a');
$.openLink(a.innerHTML);
},
});
$.register({
rule: {
host: /^(rd?)lnk\.co|reducelnk\.com$/,
path: /^\/[^.]+$/,
},
ready: function () {
'use strict';
var f = $.$('iframe#dest');
if (f) {
$.openLink(f.src);
return;
}
$.removeNodes('iframe');
var o = $.$('#urlholder');
if (o) {
$.openLink(o.value);
return;
}
o = $.$('#skipBtn');
if (o) {
o = o.querySelector('a');
$.openLink(o.href);
return;
}
o = document.title.replace(/(LNK.co|Linkbee)\s*:\s*/, '');
$.openLink(o);
},
});
$.register({
rule: {
host: /^lnx\.lu|url\.fm|z\.gs$/,
},
ready: function () {
'use strict';
var a = $('#clickbtn a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?loook\.ga$/,
path: /^\/\d+$/
},
ready: function (m) {
'use strict';
var a = $('#download_link > a.btn');
$.openLink(a.href);
},
});
$.register({
rule: [
'http://madlink.sk/',
'http://madlink.sk/*.html',
],
});
$.register({
rule: 'http://madlink.sk/*',
start: function (m) {
'use strict';
$.removeNodes('iframe');
$.post('/ajax/check_redirect.php', {
link: m[1],
}).then(function (text) {
$.openLink(text);
});
},
});
$.register({
rule: {
host: [
/^mant[ae][pb]\.in$/,
/^st\.oploverz\.net$/,
/^minidroid\.net$/,
],
},
ready: function () {
'use strict';
var a = $('a.redirect, a[target=_blank][rel=nofollow]');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^www\.mije\.net$/,
path: /^\/\w+\/(.+)$/,
},
start: function (m) {
'use strict';
var url = atob(m.path[1]);
$.openLink(url);
},
});
$.register({
rule: {
host: [
/^moe\.god\.jp$/,
/^moesubs\.akurapopo\.pro$/,
/^dl\.nsfk\.in$/,
]
},
ready: function () {
'use strict';
var a = $('div div center a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^mt0\.org$/,
path: /^\/[^\/]+\/$/,
},
ready: function () {
'use strict';
$.removeNodes('frame[name=bottom]');
var f = $('frame[name=top]');
var i = setInterval(function () {
var a = $.$('div a', f.contentDocument);
if (!a) {
return;
}
clearInterval(i);
$.openLink(a.href)
}, 1000);
},
});
$.register({
rule: 'http://my-link.pro/*',
ready: function () {
'use strict';
var i = $('iframe[scrolling=auto]');
if (i) {
$.openLink(i.src);
}
},
});
$.register({
rule: {
host: /^nsfw\.in$/,
},
ready: function () {
'use strict';
var a = $('#long_url a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^nutshellurl\.com$/,
},
ready: function () {
'use strict';
var iframe = $('iframe');
$.openLink(iframe.src);
},
});
$.register({
rule: {
host: /^(www\.)?ohleech\.com$/,
path: /^\/dl\/$/,
},
ready: function () {
'use strict';
$.window.startdl();
},
});
$.register({
rule: {
host: /^www\.oni\.vn$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var data = $.searchScripts(/data:"([^"]+)"/);
if (!data) {
throw new _.AdsBypasserError('pattern changed');
}
data = data[1];
$.get('/click.html', data).then(function (url) {
$.openLink(url);
});
},
});
$.register({
rule: {
host: /^(www\.)?ouo\.io$/,
path: /^\/go\/\w+$/,
},
ready: function (m) {
'use strict';
var a = $('#btn-main');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^oxyl\.me$/,
},
ready: function () {
'use strict';
var l = $.$$('.links-container.result-form > a.result-a');
if (l.size() > 1) {
return;
}
$.openLink(l.at(0).href);
},
});
$.register({
rule: {
host: /^p\.pw$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var m = $.searchScripts(/window\.location = "(.*)";/);
m = m[1];
$.openLink(m);
},
});
$.register({
rule: {
host: /^(www\.)?\w+\.rapeit\.net$/,
path: /^\/(go|prepair|request|collect|analyze)\/[a-f0-9]+$/,
},
ready: function (m) {
'use strict';
var a = $('a#download_link');
$.openLink(a.href);
},
});
$.register({
rule: 'http://reffbux.com/refflinx/view/*',
ready: function () {
'use strict';
$.removeNodes('iframe');
var m = $.searchScripts(/skip_this_ad_(\d+)_(\d+)/);
var id = m[1];
var share = m[2];
var location = window.location.toString();
$.post('http://reffbux.com/refflinx/register', {
id: id,
share: share,
fp: 0,
location: location,
referer: '',
}).then(function (text) {
var m = text.match(/'([^']+)'/);
if (!m) {
throw new _.AdsBypasserError('pattern changed');
}
$.openLink(m[1]);
});
},
});
$.register({
rule: 'http://richlink.com/app/webscr?cmd=_click&key=*',
ready: function () {
'use strict';
var f = $('frameset');
f = f.onload.toString();
f = f.match(/url=([^&]+)/);
if (f) {
f = decodeURIComponent(f[1]);
} else {
f = $('frame[name=site]');
f = f.src;
}
$.openLink(f);
},
});
$.register({
rule: 'http://rijaliti.info/*.php',
ready: function () {
'use strict';
var a = $('#main td[align="center"] a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^riurl\.com$/,
path: /^\/.+/,
},
ready: function () {
'use strict';
var s = $.$('body script');
if (s) {
s = s.innerHTML.indexOf('window.location.replace');
if (s >= 0) {
return;
}
}
$.openLink('', {
path: {
hidden: '1',
image: ' ',
},
});
},
});
$.register({
rule: {
host: /^preview\.rlu\.ru$/,
},
ready: function () {
'use strict';
var a = $('#content > .long_url > a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^robo\.us$/,
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var url = atob($.window.fl);
$.openLink(url);
},
});
$.register({
rule: {
host: /^(www\.)?sa\.ae$/,
path: /^\/\w+\/$/,
},
ready: function () {
'use strict';
var m = $.searchScripts(/var real_link = '([^']+)';/);
$.openLink(m[1]);
},
});
$.register({
rule: {
host: /^(www\.)?safeurl\.eu$/,
path: /\/\w+/,
},
ready: function () {
'use strict';
var directUrl = $.searchScripts(/window\.open\("([^"]+)"\);/);
if (!directUrl) {
throw new _.AdsBypasserError('script content changed');
}
directUrl = directUrl[1];
$.openLink(directUrl);
},
});
$.register({
rule: {
host: [
/^segmentnext\.com$/,
/^(www\.)?videogamesblogger.com$/,
],
path: /^\/interstitial\.html$/,
query: /return_url=([^&]+)/,
},
start: function (m) {
'use strict';
$.openLink(decodeURIComponent(m.query[1]));
},
});
$.register({
rule: {
host: /^(www\.)?(apploadz\.ru|seomafia\.net)$/
},
ready: function () {
'use strict';
$.removeNodes('iframe');
var a = $('table a');
$.openLink(a.href);
},
});
$.register({
rule: /http:\/\/setlinks\.us\/(p|t|d).*/,
ready: function () {
'use strict';
var k = $.searchScripts(/window\.location='([^']+)'/);
if (k) {
$.openLink(k[1]);
return;
}
var aLinks = $.$$('div.links-container.result-form:not(.p-links-container) > span.dlinks > a');
if (aLinks.size() === 1) {
$.openLink(aLinks.at(0).href);
return;
}
k = $('img[alt=captcha]');
$.captcha(k.src, function (a) {
var b = $('#captcha');
var c = $('input[name=Submit]');
b.value = a;
c.click();
});
},
});
(function () {
'use strict';
function afterGotSessionId (sessionId) {
var X_NewRelic_ID = $.searchScripts(/xpid:"([^"]+)"/);
var data = {
adSessionId: sessionId,
};
var header = {
Accept: 'application/json, text/javascript',
};
if (X_NewRelic_ID) {
header['X-NewRelic-ID'] = X_NewRelic_ID;
}
var i = setInterval(function () {
$.get('/shortest-url/end-adsession', data, header).then(function (text) {
var r = _.parseJSON(text);
if (r.status == "ok" && r.destinationUrl) {
clearInterval(i);
$.removeAllTimer();
$.openLink(r.destinationUrl);
}
});
}, 1000);
}
var hostRules = /^sh\.st|(dh10thbvu|u2ks|jnw0)\.com|digg\.to$/;
$.register({
rule: {
host: hostRules,
path: /^\/freeze\/.+/,
},
ready: function () {
var o = new MutationObserver(function (mutations) {
mutations.forEach(function (mutation) {
if (mutation.target.getAttribute('class').match(/active/)) {
o.disconnect();
$.openLink(mutation.target.href);
}
});
});
o.observe($('#skip_button'), {
attributes: true,
attributeFilter: ['class'],
});
},
});
$.register({
rule: {
host: hostRules,
path: /https?:\/\//,
},
start: function () {
var url = window.location.pathname + window.location.search + window.location.hash;
url = url.match(/(https?:\/\/.*)$/);
url = url[1];
$.openLink(url);
},
});
$.register({
rule: {
host: hostRules,
path: /^\/[\d\w]+/,
},
start: function () {
$.window._impspcabe = 0;
},
ready: function () {
$.removeNodes('iframe');
$.removeAllTimer();
var m = $.searchScripts(/sessionId: "([\d\w]+)",/);
if (m) {
afterGotSessionId(m[1]);
return;
}
var o = new MutationObserver(function (mutations) {
mutations.forEach(function (mutation) {
var m = $.searchScripts(/sessionId: "([\d\w]+)",/);
if (m) {
o.disconnect();
afterGotSessionId(m[1]);
}
});
});
o.observe(document.body, {
childList: true,
});
},
});
})();
$.register({
rule: {
host: /^(www\.)?shink\.in$/,
path: /^\/\w+$/,
},
ready: function () {
'use strict';
var f = $('#skip');
if (!$.$('#captcha')) {
f.submit();
return;
}
var envio = $("#envio");
envio.disabled = false;
envio.style.visibility= "hidden";
envio.style.display='none';
var envio2 = $("#envio2");
envio2.style.visibility= "visible";
envio2.style.display='block';
$.window.$("#myModal").reveal();
},
});
$.register({
rule: {
host: [
/^(www\.)?shortenurl\.tk$/,
/^(www\.)?pengaman\.link$/,
],
path: /^\/\w+$/,
},
ready: function (m) {
'use strict';
var l = $('a.btn-block.redirect');
$.openLink(l.href);
},
});
$.register({
rule: {
host: /^(www\.)?shorti\.ga$/,
path: [
/^\/\w+$/,
/^\/url_redirector\.html$/,
],
},
ready: function () {
'use strict';
var f = $.$$('frame');
var fl = f.find(function(value, key, self) {
if (value.getAttribute('class')) {
return _.none;
}
return 'Target frame found';
});
$.openLink(fl.value.src);
},
});
$.register({
rule: {
host: /^www\.shortskip\.com$/,
path: /^\/short\.php$/,
query: /i=([^&]+)/,
},
start: function (m) {
'use strict';
var url = decodeURIComponent(m.query[1]);
$.openLink(url);
},
});
$.register({
rule: {
host: /^(www\.)?similarsites\.com$/,
path: /^\/goto\/([^?]+)/
},
start: function (m) {
'use strict';
var l = m.path[1];
if (!/^https?:\/\//.test(l)) {
l = 'http://' + l;
}
$.openLink(l);
},
});
$.register({
rule: {
host: /^stash-coins\.com$/,
},
start: function () {
'use strict';
var url = window.location.toString();
var i = url.lastIndexOf('http');
url = url.substr(i);
$.openLink(url);
},
});
$.register({
rule: {
host: /^(www\.)?supercheats\.com$/,
path: /^\/interstitial\.html$/,
query: /(?:\?|&)oldurl=([^&]+)(?:$|&)/,
},
start: function (m) {
'use strict';
$.openLink(m.query[1]);
},
});
$.register({
rule: [
{
host: [
/^(www\.)?sylnk\.net$/,
/^dlneko\.(com|net)$/,
],
query: /link=([^&]+)/,
},
{
host: /^(www\.)?compul\.in$/,
path: /^\/n\.php$/,
query: /v=([^&]+)/,
},
{
host: /^(www\.)?safelinkair\.com$/,
path: /^\/code$/,
query: /(?:\?|&)link=([a-zA-Z0-9=]+)(?:$|&)/,
},
],
start: function (m) {
'use strict';
var rawLink = atob(m.query[1]);
$.openLink(rawLink);
},
});
$.register({
rule: [
{
host: /^(www\.)?(link\.)?safelink(converter2?|s?review)\.com$/,
query: /id=(\w+=*)/,
},
{
host: [
/^(www\.)?dlneko\.com$/,
/^(satuasia|tawaku)\.com$/,
/^ww3\.manteb\.in$/,
],
query: /go=(\w+=*)/,
},
],
start: function (m) {
'use strict';
var l = atob(m.query[1]);
var table = {
'!': 'a',
')': 'e',
'_': 'i',
'(': 'o',
'*': 'u',
};
l = l.replace(/[!)_(*]/g, function (m) {
return table[m];
});
$.openLink(l);
},
});
$.register({
rule: {
host: /^(www\.)?safelinkreview\.com$/,
path: /^\/\w+\/cost\/([\w\.]+)\/?$/,
},
start: function (m) {
'use strict';
var l = 'http://' + m.path[1];
$.openLink(l);
},
});
$.register({
rule: {
host: /^thinfi\.com$/,
},
ready: function () {
'use strict';
var a = $('div p a');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^tinyarrows\.com$/,
path: /^\/preview\.php$/,
query: /^\?page=([^&]+)/,
},
start: function (m) {
'use strict';
$.openLink(decodeURIComponent(m.query[1]));
},
});
$.register({
rule: {
host: /^(www\.)?totaldebrid\.org$/,
path:/\/l\/(l\.php)?$/,
query: /\?ads=([a-zA-Z0-9=]+)$/,
},
start: function (m) {
'use strict';
var l = atob(m.query[1]);
$.openLink(l);
},
});
$.register({
rule: {
host: /^(www\.)?typ\.me$/,
},
ready: function (m) {
'use strict';
var a = $('#skipAdBtn');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^(www\.)?ultshare\.com$/,
path: /^\/(?:(?:\d-)?(\d+)|index\.php)$/,
query: /^(?:\?a=\d&c=(\d+))?$/
},
start: function (m) {
'use strict';
var linkId = m.path[1]?m.path[1]:m.query[1];
var directLink = '/3-' + linkId;
$.openLink(directLink);
},
});
$.register({
rule: {
host: /^unfake\.it$/,
},
ready: function () {
'use strict';
var frame = $('frame');
var i = frame.src.lastIndexOf('http://');
$.openLink(frame.src.substr(i));
},
});
$.register({
rule: {
host: /^(www\.)?(upan|gxp)\.so$/,
path: /^\/\w+$/,
},
ready: function () {
'use strict';
var a = $('table.td_line a[onclick="down_process_s();"]');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /^url\.ie$/,
},
ready: function () {
'use strict';
var a = $('a[title="Link to original URL"]');
$.openLink(a.href);
},
});
$.register({
rule: {
host: /urlcash\.(com|net|org)|(bat5|detonating|celebclk|eightteen|smilinglinks|peekatmygirlfriend|pornyhost|clb1|urlgalleries)\.com|looble\.net|xxxs\.org$/,
},
ready: function () {
'use strict';
if ($.window && $.window.linkDestUrl) {
$.openLink($.window.linkDestUrl);
return;
}
var matches = document.body.innerHTML.match(/linkDestUrl = '(.+)'/);
if (matches) {
$.openLink(matches[1]);
return;
}
},
});
$.register({
rule: {
host: /^urlinn\.com$/,
},
ready: function () {
'use strict';
var m = $('META[HTTP-EQUIV=refresh]').getAttribute('CONTENT').match(/url='([^']+)'/);
if (m) {
$.openLink(m[1]);
}
},
});
$.register({
rule: {
host: /^urlms\.com$/,
},
ready: function () {
'use strict';
var iframe = $('#content');
$.openLink(iframe.src);
},
});
$.register({
rule: {
host: /^(www\.)?urlv2\.com$/,
},
ready: function (m) {
'use strict';
if (window.location.pathname.indexOf('locked') >= 0) {
var path = window.location.pathname.replace('/locked', '');
$.openLink(path);
return;
}
var m = $.searchScripts(/jeton=([\w]+)/);
var l = 'http://urlv2.com/algo.php?action=passer&px=0&so=1&jeton=' + m[1];
window.setTimeout(function() {$.openLink(l)}, 5000);
},
});
$.register({
rule: {
host: /^(www\.)?victly\.com$/,
path: /^\/\w+$/,
},
start: function () {
'use strict';
$.post(document.location.href, {
hidden: '',
image: 'Skip+Ads',
}).then(function (text) {
var m = text.match(/window\.location\.replace\('([^']+)'\)/);
$.openLink(m[1]);
});
},
});
$.register({
rule: {
host: /^www\.viidii\.info$/,
},
ready: function () {
'use strict';
var o = $('#directlink');
$.openLink(o.href);
},
});
$.register({
rule: {
host: /^(www\.)?vir\.al$/,
},
ready: function () {
'use strict';
var m = $.searchScripts(/var target_url = '([^']+)';/);
if (!m) {
throw new _.AdsBypasserError('site changed');
}
$.openLink(m[1]);
},
});
$.register({
rule: {
host: /^(www\.)?wzzq\.me$/,
},
ready: function () {
'use strict';
try {
var l = $('#img_loading_table2 div.wz_img_hit a[target=_blank]').href;
$.openLink(l);
} catch (e) {
}
},
});
$.register({
rule: {
host: /^xlink.me$/
},
ready: function () {
'use strict';
var a = $('#main_form > center > a');
if (!a) {return;}
$.openLink(a.href);
},
});
$.register({
rule: 'http://yep.it/preview.php?p=*',
ready: function () {
'use strict';
var link = $('font[color="grey"]').innerHTML;
$.openLink(link);
},
});
$.register({
rule: 'http://www.yooclick.com/l/*',
ready: function () {
'use strict';
$.removeNodes('iframe');
var uniq = $.window.uniq || $.window.uniqi;
if (!uniq) {return;}
var path = window.location.pathname;
var url = _.T('{0}?ajax=true&adblock=false&old=false&framed=false&uniq={1}')(path, uniq);
var getURL = function() {
$.get(url).then(function (text) {
var goodURL = /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(text);
if (goodURL) {
$.openLink(text);
} else {
setTimeout(getURL, 500);
}
});
}
getURL();
},
});
$.register({
rule: 'http://zo.mu/redirector/process?link=*',
ready: function () {
'use strict';
$.removeNodes('iframe');
window.location.reload();
},
});
$.register({
rule: {
host: /^zzz\.gl$/,
},
ready: function () {
'use strict';
var m = $.searchScripts(/var domainurl = '([^']+)';/);
if (!m) {
throw new _.AdsBypasserError('site changed');
}
$.openLink(m[1]);
},
});
(function () {
'use strict';
var sUrl = '(\\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])';
function isLink (text) {
var rUrl = new RegExp(_.T('^{0}$')(sUrl), 'i');
return rUrl.test(text);
}
function linkify (text) {
var rUrl = new RegExp(sUrl, 'ig');
return text.replace(rUrl, function(match) {
return _.T("<a href='{0}'>{0}</a>")(match);
});
}
$.register({
rule: {
host: /^(www\.)?([a-zA-Z0-9]+\.)?binbox\.io$/,
path: /\/([a-zA-Z0-9]+)/,
hash: /(?:#([a-zA-Z0-9]+))?/,
},
ready: function (m) {
var sjcl = $.window.sjcl;
var paste_id = m.path[1];
var paste_salt = m.hash[1];
var API_URL = _.T('https://binbox.io/{0}.json')(paste_id);
$.get(API_URL, false, {
Origin: _.none,
Referer: _.none,
Cookie: 'referrer=1',
'X-Requested-With': _.none,
}).then(function (pasteInfo) {
pasteInfo = _.parseJSON(pasteInfo);
if (!pasteInfo.ok) {
throw new _.AdsBypasserError("error when getting paste information");
}
if (pasteInfo.paste.url) {
$.openLink(pasteInfo.paste.url);
return;
}
var raw_paste = sjcl.decrypt(paste_salt, pasteInfo.paste.text);
if (isLink(raw_paste)) {
$.openLink(raw_paste);
return;
}
var elm = document.createElement('pre');
elm.id = 'paste-text';
elm.innerHTML = linkify(raw_paste);
var frame = $('#paste-frame, #captcha-page');
frame.parentNode.replaceChild(elm, frame);
});
},
});
})();
$.register({
rule: {
host: /^(www\.)?pasted\.co$/,
path: /^\/\w+$/,
},
ready: function () {
'use strict';
$.removeNodes('#captcha_overlay');
},
});
(function (context, factory) {
if (typeof module === 'object' && typeof module.exports === 'object') {
module.exports = function (context, GM) {
var _ = require('lodash');
var core = require('./core.js');
var misc = require('./misc.js');
var dispatcher = require('./dispatcher.js');
var modules = [misc, dispatcher].map(function (v) {
return v.call(null, context, GM);
});
var $ = _.assign.apply(_, modules);
return factory(context, GM, core, $);
};
} else {
factory(context, {
openInTab: GM_openInTab,
registerMenuCommand: GM_registerMenuCommand,
}, context._, context.$);
}
}(this, function (context, GM, _, $) {
'use strict';
var window = context.window;
var document = window.document;
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
function disableWindowOpen () {
$.window.open = _.nop;
$.window.alert = _.nop;
$.window.confirm = _.nop;
}
function disableLeavePrompt (element) {
if (!element) {
return;
}
var seal = {
set: function () {
_.info('blocked onbeforeunload');
},
};
element.onbeforeunload = undefined;
if (isSafari) {
element.__defineSetter__('onbeforeunload', seal.set);
} else {
$.window.Object.defineProperty(element, 'onbeforeunload', {
configurable: true,
enumerable: false,
get: undefined,
set: seal.set,
});
}
var oael = element.addEventListener;
var nael = function (type) {
if (type === 'beforeunload') {
_.info('blocked addEventListener onbeforeunload');
return;
}
return oael.apply(this, arguments);
};
element.addEventListener = nael;
}
function changeTitle () {
document.title += ' - AdsBypasser';
}
function beforeDOMReady (handler) {
_.info('working on\n%s \nwith\n%s', window.location.toString(), JSON.stringify($.config));
disableLeavePrompt($.window);
disableWindowOpen();
handler.start();
}
function afterDOMReady (handler) {
disableLeavePrompt($.window.document.body);
changeTitle();
handler.ready();
}
function waitDOM () {
return _.D(function (resolve, reject) {
if (document.readyState !== 'loading') {
resolve();
return;
}
document.addEventListener('DOMContentLoaded', function () {
resolve();
});
});
}
$._main = function () {
var findHandler = $._findHandler;
delete $._main;
delete $._findHandler;
if (window.top !== window.self) {
return;
}
GM.registerMenuCommand('AdsBypasser - Configure', function () {
GM.openInTab('https://adsbypasser.github.io/configure.html');
});
var handler = findHandler(true);
if (handler) {
if ($.config.logLevel <= 0) {
_._quiet = true;
}
beforeDOMReady(handler);
waitDOM().then(function () {
afterDOMReady(handler);
});
return;
}
if ($.config.logLevel < 2) {
_._quiet = true;
}
_.info('does not match location on `%s`, will try HTML content', window.location.toString());
waitDOM().then(function () {
handler = findHandler(false);
if (!handler) {
_.info('does not match HTML content on `%s`', window.location.toString());
return;
}
beforeDOMReady(handler);
afterDOMReady(handler);
});
};
return $;
}));
$._main();