MyAnimeList(MAL) - Popup for "Edit Details"

This script will show a popup when you click "Edit details" on any anime/manga page.

2016/08/17のページです。最新版はこちら。

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         MyAnimeList(MAL) - Popup for "Edit Details"
// @version      1.0.5
// @description  This script will show a popup when you click "Edit details" on any anime/manga page.
// @author       Cpt_mathix
// @match        *://myanimelist.net/*
// @exclude      *://myanimelist.net/animelist*
// @exclude      *://myanimelist.net/mangalist*
// @license      GPL version 2 or any later version; http://www.gnu.org/licenses/gpl-2.0.txt
// @grant        none
// @namespace https://greasyfork.org/users/16080
// ==/UserScript==

var pageEdit = document.querySelector('#addtolist > table > tbody > tr:nth-child(n) > td:nth-child(2) > small > a');
if (pageEdit) {
    pageEdit.className = "Lightbox_AddEdit button_add";
    pageEdit.href += "&hideLayout";
}

var pageAddDetails = document.querySelector('#addtolistresult > a');
if (pageAddDetails) {
    pageAddDetails.className = "Lightbox_AddEdit button_add";
    pageAddDetails.href += "&hideLayout";
}

if (typeof jQuery == 'undefined') $ = unsafeWindow.$;

$('.Lightbox_AddEdit').fancybox({
        'width'			: 700,
        'height'		: '85%',
        'overlayShow'	: false,
        'titleShow'     : false,
        'type'          : 'iframe'
});