【小书签】让淘宝移动版滚回 pc 去!!!

别人给我发个淘宝链接,打开一看,手机版,其实有转换到电脑版的按钮,但是被神奇的广告又给挡住了…………

电脑上看手机版多难受啊,赶紧写个小书签,点一下,不管是店铺首页还是商品详情页,一秒回到 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;
})();
2 个赞

这种目标固定的还是写成油猴好

1 个赞

(s)?可以不加括号

这倒是,就是最近老写小书签了,于是就这么着了。

写油猴的话还是凑凑,凑一批功能比较合理。要不总觉得对不起观众。