别人给我发个淘宝链接,打开一看,手机版,其实有转换到电脑版的按钮,但是被神奇的广告又给挡住了…………
电脑上看手机版多难受啊,赶紧写个小书签,点一下,不管是店铺首页还是商品详情页,一秒回到 PC 版
javascript:(function(){
var url = window.location.href;
if(url.match(/^http(s)?:\/\/shop\.m\.(taobao|tmall)\.com\/shop\/shop_index\.htm\?(.*)?user_id=(\d+)(.*)?$/) != null){
var el = document.querySelectorAll('#bottom footer nav a');
var pcurl = el[0].getAttribute('href');
}else if(url.match(/^http(s)?:\/\/h5\.m\.(taobao|tmall)\.com\/(.*)?detail\.htm\?(.*)?id=(\d+)(.*)?$/) != null){
pcurl = url.replace(/^http(s)?:\/\/h5\.m\.(taobao|tmall)\.com\/(.*)?detail\.htm\?(.*)?id=(\d+)(.*)?$/,'https://detail.$2.com/item.htm?id=$5');
};
window.location.href = pcurl;
})();