Dmhy.org(动漫花园) New-Animation-Index All Shower

Dmhy.org-动漫花园-新番资源索引-全部显示

目前为 2017-01-21 提交的版本。查看 最新版本

// ==UserScript==
// @name         Dmhy.org(动漫花园) New-Animation-Index All Shower
// @description  Dmhy.org-动漫花园-新番资源索引-全部显示
// @version      1.0.17012101
// @author       DanoR
// @namespace    http://weibo.com/zheung
// @grant        none
// @include      *://share.dmhy.org/*
// ==/UserScript==

(function() {
	document.querySelector('.jmd').style.display = 'none';

	var jmd_base = document.querySelector('.jmd_base');

	jmd_base.removeAttribute('style');
	jmd_base.className += ' jmd';

	var tr = jmd_base.querySelectorAll('tbody>tr');

	tr[new Date().getDay()].className += 'today ';

	for(var i=0; i<tr.length; i++)
		tr[i].className += (i % 2 == 1?'even':'odd');
})();