MicrosoftDocLanguageSwitchButton

fix the language switch button in Microsoft Docs, set your expected language in the script data manually

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

作者のサイトでサポートを受ける。または、このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name                MicrosoftDocLanguageSwitchButton
// @name:zh-CN          微软文档语言切换按钮
// @name:zh-TW          微軟文檔語言切換按鈕
// @description         fix the language switch button in Microsoft Docs, set your expected language in the script data manually
// @description:zh-CN   修复微软文档中的语言切换按钮,在脚本数据中手动设置你期望的语言
// @description:zh-TW   修復微軟文檔中的語言切換按鈕,在腳本數據中手動設置你期望的語言
// @author              ladit
// @version             1.2.2
// @namespace           https://greasyfork.org/zh-CN/scripts/33209
// @homepageURL         https://github.com/ladit/Userscripts
// @supportURL          https://github.com/ladit/Userscripts

// @grant               GM.setValue
// @grant               GM.getValue
// @match               http*://learn.microsoft.com/en-us/*
// ==/UserScript==

(async () => {
  let userLanguage = await GM.getValue('language')
  if (!userLanguage) {
    userLanguage = navigator.language || navigator.userLanguage
    await GM.setValue('language', userLanguage)
  }

  const button = document.querySelector('#lang-link-tablet')
  const url = button.getAttribute('href').replace(/\/en-us\//, `/${userLanguage.toLowerCase()}/`)
  button.setAttribute('href', url)
  button.querySelector('.is-visually-hidden').textContent = `Read in ${userLanguage}`
  button.removeAttribute('hidden')
})()