您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects to english version of MSDN, TechNet, Microsoft Support, etc.
当前为
// ==UserScript== // @name Windwos IT Pro Force English // @include /^https?://(docs|msdn|technet|support|developer)\.microsoft\.com/[a-z]{2}-[a-z]{2}// // @include /^https?://support.office.com/[a-z]{2}-[a-z]{2}// // @run-at document-start // @icon https://www.microsoft.com/favicon.ico // @grant none // @version 2.0 // @description Redirects to english version of MSDN, TechNet, Microsoft Support, etc. // @author RoundRobin // @namespace https://greasyfork.org/users/97514 // ==/UserScript== if (!window.location.pathname.startsWith('/en-us') && window.location.search.indexOf("language=force") == -1) { window.location.pathname = window.location.pathname.replace(/\/(\w{2}-\w{2})\//, "/en-us/"); }