Use ArticleID on Wikipedia

Replace the URL with ArticleID and make it linkable!

  1. // ==UserScript==
  2. // @name Use ArticleID on Wikipedia
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Replace the URL with ArticleID and make it linkable!
  6. // @author Jakarta Read-only Brothers
  7. // @match https://*.wikipedia.org/wiki/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. "use strict";
  13. const url = location.origin + "/?curid=" + RLCONF.wgArticleId + location.hash;
  14. history.replaceState(null, "", url);
  15. })();