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

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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';

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

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

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

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

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