将 V2ex 移动版网页转为 PC 版网页
目前為
// ==UserScript==
// @name 将V2ex移动版网页转为PC版网页
// @namespace None
// @version 0.2
// @description 将 V2ex 移动版网页转为 PC 版网页
// @author Owovo
// @match *://*.v2ex.com/amp/*
// @grant none
// ==/UserScript==
(function (){
var url = location.href;
if (url.indexOf("/amp/") > 0) {
var url1 = url.replace("/amp/", "/");
var url2 = url1.slice(url1.indexOf("/t/") + 1).split('/')
// console.log(location.protocol+"//www.v2ex.com/t/"+url2[1])
location.replace(location.protocol+"//www.v2ex.com/t/"+url2[1]);
}
})();