// ==UserScript==
// @name moegirlTable
// @namespace http://tampermonkey.net/
// @version 1.03
// @description 萌娘百科新番列表產生Table
// @author backrock12
// @match https://zh.moegirl.org.cn/*
// @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js
// @grant none
// @downloadURL none
// ==/UserScript==
(function ( ) {
'use strict';
var $ = $ || window.$;
var table;
function createtable() {
var listc = [];
var num = 1;
var tcaption = $('h1').eq(0).text();
var lista = $('h2');
lista.each(function () {
var t = $(this);
var name = t.text();
if (name != '目录' && name != '导航' && name != '参见' && name != '导航菜单'&&
name != '注释' && name != '公告' && name != '讨论中事项' && name != '投票中事项'
) {
var href = t.nextAll('.thumb').find('img').eq(0).attr('src');
var time = t.nextAll('dl').find('dd').eq(1).text();
var type = t.nextAll('ul').find('li').eq(0);
var describe = t.nextAll('.poem').eq(0);
var staff = t.nextAll('.columns-list').eq(0);
var cast = t.nextAll('.columns-list').eq(1);
var expect = '';
var feedback = '';
describe = describe.length > 0 ? describe.html() : '';
staff = staff.length > 0 ? staff.html() : '';
cast = cast.length > 0 ? cast.html() : '';
time = time.replace('起', '起
');
type = type.length > 0 ? type.text() : '';
type = type == '点此进入官方网站' ? '' : type;
var c = { no: num++, name: name, href: href, describe: describe, time: time, staff: staff, cast: cast, type: type, expect: expect, feedback: feedback }
listc.push(c);
}
});
table = $('