NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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; } } }