Replace the URL with ArticleID and make it linkable!
目前為
// ==UserScript==
// @name Use ArticleID on Wikipedia
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Replace the URL with ArticleID and make it linkable!
// @author Jakarta Read-only Brothers
// @match https://*.wikipedia.org/wiki/*
// @grant none
// ==/UserScript==
(function() {
"use strict";
location.replace(location.origin + "/?curid=" + RLCONF.wgArticleId);
})();