Google 错误地索引 .m 链接,把带有m移动版的排名放在第一位,导致在pc浏览器阅读体验下降,可以用 维基百科移动域名自动跳转 这个脚本自动跳转到桌面端。
发现日文也有类似的情况,稍微改了一下脚本:
// ==UserScript==
// @name 维基百科移动域名自动跳转
// @version 0.01
// @description 用于维基百科移动域名自动跳转为pc域名
// @namespace https://greasyfork.org/en/users/30-opsomh
// @include https://zh.m.wikipedia.org/*
// @include https://ja.m.wikipedia.org/*
// @grant none
// @inject-into auto
// @run-at document-start
// @license 暂无
// ==/UserScript==
var url;
function getStr(str) { //取中间字符
var res = str.match(new RegExp(`https://zh.(.*?)wikipedia.org/(.*?)$`));
if(res === -1){
res = str.match(new RegExp(`https://ja.(.*?)wikipedia.org/(.*?)$`));
}
return res ? res : -1;
}
url=getStr(window.location.href)[1];
console.log(url);
if(url=`m.`){
window.stop();
url=window.location.href.replace(url, '');
console.log(url);
location.assign(url);
}
文章评论