Greasy Fork

Nexusmods skyrim japan database

Nexusmodsのスカイリムページに、日本MODデータベースへのリンクを追加します

当前为 2016-11-27 提交的版本,查看 最新版本

// ==UserScript==
// @name            Nexusmods skyrim japan database
// @namespace       mikanNsjd
// @version         2.0
// @description     Nexusmodsのスカイリムページに、日本MODデータベースへのリンクを追加します
// @author          mikan-megane
// @require         https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
// @include         http://www.nexusmods.com/skyrim/mods/*
// @include         http://www.nexusmods.com/skyrimspecialedition/mods/*
// ==/UserScript==

var skyrim = document.URL.replace(/http:\/\/(www\.)?nexusmods\.com\/skyrim\/mods\/(\d+)($|\/.+)/, "$2");
var skyrimsp = document.URL.replace(/http:\/\/(www\.)?nexusmods\.com\/skyrimspecialedition\/mods\/(\d+)($|\/.+)/, "$2");

jQuery.noConflict();
(function($){
    $(function(){
    	if (skyrim != document.URL) {
			$(".tabbed-buttons div:first-child").before('<div class="action-button green"><a href="http://skyrim.2game.info/detail.php?id='+skyrim+'">日本MODデータベースへ</a></div> ');
    	}else{
			$(".tabbed-buttons div:first-child").before('<div class="action-button green"><a href="http://skyrimspecialedition.2game.info/detail.php?id='+skyrimsp+'">日本MODデータベースへ</a></div> ');
    	}
    });
})(jQuery);