wang867gmail.com / Pchome_skip18

// ==UserScript==
// @name           Pchome_skip18
// @namespace      
// @include        http://shopping.pchome.com.tw/*
// @include        http://24h.shopping.pchome.com.tw/*
// @version        1.0
// @grant       none
// ==/UserScript==
var WURL = window.location.href;
if( WURL.indexOf("f=sexy") != -1 ){
	var alink = document.getElementsByTagName('a');
	for( var x in alink){
		if( alink[x].innerHTML.indexOf('sexy_index_06') != -1){
			window.location.href = alink[x].href;
			break;
		}
	}
}