ArchWiki JP Link Changer

ArchWiki .jpのパッケージ詳細リンクの遷移先を.orgに変更します.

// ==UserScript==
// @name         ArchWiki JP Link Changer
// @version      1.0
// @namespace pclives.org
// @license MIT
// @description  ArchWiki .jpのパッケージ詳細リンクの遷移先を.orgに変更します.
// @author       popcount
// @match        https://wiki.archlinux.jp/index.php/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.querySelectorAll("a").forEach(e => {
        e.href = e.href.replace("https://www.archlinux.jp/packages/", "https://archlinux.org/packages/");
    })
})();