ADSkip
// ==UserScript==
// @name 动漫狂(動漫狂) 移动版 跳过广告
// @namespace http://tampermonkey.net/
// @version 0.3
// @description ADSkip
// @author Lien
// @match http://www.comicmad.fun8.us/m/loading/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
var url = document.URL;
//alert(url);
var arrUrl = url.split("//");
var start = arrUrl[1].indexOf("/",25);
if(start>0){
var target="http://www.cartoonmad.com/m/comic" + arrUrl[1].substring(start);
//alert(target);
window.location.href=target;
//window.open(target);
//setTimeout(window.close(),5000);
}
})();