// ==UserScript== // @name Nexusmods skyrim&fallout japan database // @namespace mikanNsjd // @version 4.0 // @description Nexusmodsのスカイリム、フォールアウト4ページに、日本MODデータベースへのリンクを追加します // @author mikan-megane // @grant none // @include https://*.nexusmods.com/skyrim/mods/* // @include https://*.nexusmods.com/skyrimspecialedition/mods/* // @include https://*.nexusmods.com/fallout4/mods/* // @downloadURL none // ==/UserScript== (function () { var url = document.URL.match(/https?:\/\/(www|rd)?\.nexusmods\.com\/(skyrim(?:specialedition)?|fallout4)\/mods\/(\d+)(?:$|\/.+|\?.+)/); if (url !== null) { var el = url[1] == 'www' ? document.querySelector(".tabbed-buttons div:first-child") : document.querySelector(".modactions > li:first-child"); el.insertAdjacentHTML('beforebegin', url[1] == 'www' ? '
日本MODデータベースへ
' : '
  • 日本語
  • '); } }());