Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/2a9532539d88503147fd9a47f032ecb6.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Nexusmods skyrim&fallout japan database
// @namespace mikanNsjd
// @version 3.0
// @description Nexusmodsのスカイリム、フォールアウト4ページに、日本MODデータベースへのリンクを追加します
// @author mikan-megane
// @grant none
// @include https://www.nexusmods.com/skyrim/mods/*
// @include https://www.nexusmods.com/skyrimspecialedition/mods/*
// @include https://www.nexusmods.com/fallout4/mods/*
// @downloadURL none
// ==/UserScript==
var skyrim = document.URL.match(/https?:\/\/(?:www\.)?nexusmods\.com\/skyrim\/mods\/(\d+)(?:$|\/.+)/);
var skyrimsp = document.URL.match(/https?:\/\/(?:www\.)?nexusmods\.com\/skyrimspecialedition\/mods\/(\d+)(?:$|\/.+)/);
var fallout4 = document.URL.match(/https?:\/\/(?:www\.)?nexusmods\.com\/fallout4\/mods\/(\d+)(?:$|\/.+)/);
var el = document.querySelector(".tabbed-buttons div:first-child");
if (skyrim) {
el.insertAdjacentHTML('beforebegin', ' ');
} else if (skyrimsp) {
el.insertAdjacentHTML('beforebegin', ' ');
} else if (fallout4) {
el.insertAdjacentHTML('beforebegin', ' ');
}