Skip to content

Instantly share code, notes, and snippets.

@Maoyeedy
Created November 5, 2023 17:32
Show Gist options
  • Save Maoyeedy/8a6d3f3d9196ead0afa9ee0106e88ce0 to your computer and use it in GitHub Desktop.
Save Maoyeedy/8a6d3f3d9196ead0afa9ee0106e88ce0 to your computer and use it in GitHub Desktop.
Redirect old Unity docs to 2022.3 version
// ==UserScript==
// @name Unity Docs Redirect To 2022.3
// @namespace https://github.com/Maoyeedy/
// @version 1.0
// @author Maoyeedy
// @license MIT
// @description Redirect old Unity docs to 2022.3
// @icon https://unity.com/favicon.ico
// @match https://docs.unity3d.com/*/Documentation/*
// @exclude https://docs.unity3d.com/2022.3/Documentation/*
// @grant none
// ==/UserScript==
const regex = /^https:\/\/docs\.unity3d\.com\/[0-9.]+\/Documentation\//
if (regex.test(window.location.href)) {
// let newUrl = window.location.href.replace(regex, 'https://docs.unity3d.com/Documentation/')
let newUrl = window.location.href.replace(regex, 'https://docs.unity3d.com/2022.3/Documentation/')
window.location.replace(newUrl)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment