域名自动跳转脚本
// ==UserScript==
// @name 域名自动跳转脚本
// @namespace http://tampermonkey.net/
// @version 0.4
// @description 自动将m.开头的域名跳转到www.开头
// @author HUAJIEN
// @match *://m.*.*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if (window.location.href.startsWith("http://m.") || window.location.href.startsWith("https://m.")) {
var newUrl = window.location.href.replace("//m.", "//www.");
window.location.href = newUrl;
}
})();