Greasy Fork

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

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

目前为 2015-04-25 提交的版本。查看 最新版本

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

document.querySelector(".jmd").style.display = "none";

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

jmd_base.style.display = "block";
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");