Wikipedia URL Redirect

Обрезка stable-адреса в Википедии

  1. // ==UserScript==
  2. // @name Wikipedia URL Redirect
  3. // @version 2021.02.03
  4. // @description Обрезка stable-адреса в Википедии
  5. // @description:en Wikipedia's stable-URL cutter
  6. // @include http*://*wikipedia.org/*
  7. // @icon https://www.google.com/s2/favicons?domain=wikipedia.org
  8. // @author Rainbow-Spike
  9. // @namespace https://greasyfork.org/users/7568
  10. // @homepage https://greasyfork.org/ru/users/7568-dr-yukon
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. if ( window.location.href.match ( 'stable=0' ) != null ) {
  15. window.location.href = window.location.href.replace ( "w/index.php?title=", "wiki/" ).replace ( "&stable=0", "" )
  16. }
  17.  
  18. // ЯРОСТЬ ТОПОРА!