今日热榜it之家移动端页面跳转到桌面端
// ==UserScript==
// @name ithomeurl m to www
// @namespace https://greatest.deepsurf.us/zh-CN/scripts/429421-ithomeurl-m-to-www
// @version 0.2
// @description 今日热榜it之家移动端页面跳转到桌面端
// @author sh
// @match *://m.ithome.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
var url = window.location.href.split("/")
var url_2 = url[4].substring(0,3)
var url_3 = url[4].substring(3,)
var new_url = "https://www.ithome.com/0/" + url_2 + "/" + url_3
window.location.replace(new_url)
})();