6/19/2022, 8:12:26 PM
// ==UserScript==
// @name Redirect to latest release - docs.rs
// @namespace Violentmonkey Scripts
// @match https://docs.rs/*
// @grant none
// @version 1.0
// @author Blusk
// @description 6/19/2022, 8:12:26 PM
// @run-at document-start
// @license MIT
// ==/UserScript==
const path = window.location.pathname.split("/");
const version = path[2]
if (version !== "latest" && /^[\d\.]+$/.test(version)) {
path[2] = "latest";
window.location.pathname = path.join("/");
}