Use ArticleID on Wikipedia

Replace the URL with ArticleID and make it linkable!

目前為 2021-05-22 提交的版本,檢視 最新版本

// ==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);
})();