MyAnimeList(MAL) - Global Popup for "Edit" & "Add"

Every page on MAL will show a popup when you click the "Edit" or "Add" buttons.

目前为 2016-01-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         MyAnimeList(MAL) - Global Popup for "Edit" & "Add"
// @version      1.0.0
// @description  Every page on MAL will show a popup when you click the "Edit" or "Add" buttons.
// @author       Cpt_mathix
// @match        http://myanimelist.net/*
// @exclude      http://myanimelist.net/animelist*
// @exclude      http://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 = $('#addtolist > table > tbody > tr:nth-child(4) > td:nth-child(2) > small > a')[0];
if (pageEdit) {
    pageEdit.className = "Lightbox_AddEdit button_add";
    pageEdit.href += "&hideLayout";
}

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