NGACN跳转广告过滤

2013-9-4 更新: 添加版面跳转

NGACN.cc 论坛会随机转向到需要点击才能继续浏览的广告,所以写了个脚本来自动跳转,很简单的三行代码。

脚本需要FireFox + scriptish扩展  点我安装

// ==UserScript==
// @id             github.com-c89fe7d1-a59b-42b2-a17a-a88c024f6f4e@scriptish
// @name           NGA跳转广告过滤
// @version        1.1
// @namespace      hmmabc.com
// @author         hmmabc
// @description    自动跳转NGA广告
// @include        http://bbs.ngacn.cc/misc/*
// @run-at         document-start
// ==/UserScript==

var currentURL = window.location.href;
var url = [/http:\/\/bbs.ngacn.cc\/read.*$/,/http:\/\/bbs.ngacn.cc\/thread.*$/];
for(i=0;i<url.length;i++){
	var real = url[i].exec(currentURL);
	if(real){
		window.location.href = real;
	}
}

 

1.0 [email protected]
1.1 [email protected]