Redirect to latest release - docs.rs

6/19/2022, 8:12:26 PM

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