您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
配置希望状況を見やすくします
当前为
// ==UserScript== // @name tdu_labo_grouping // @namespace tdu // @include /https?://www\.mlab\.im\.dendai\.ac\.jp/bthesis2015/StudentDeploy\.jsp/ // @include /https?://www\.mlab\.im\.dendai\.ac\.jp/bthesis2015/StudentDeploy\.jsp\?displayOrder=0/ // @description 配置希望状況を見やすくします // @version 1 // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js // @grant none // ==/UserScript== $(function() { var $info = null; var curren_group = ""; var num = 0; $trs = $('.entry_table tr'); $trs.splice(0, 1); $trs.each(function() { var name = $(this).children(':nth-child(3)').html(); // 切れ目 if (curren_group != name) { if ($info) { $info.html(to_info_text(curren_group, num)); $(this).prev().children('td').css("border-bottom", "dotted 2px"); } $(this).before('<tr class="labo-title"><td colspan="4"></td></tr>'); $info = $(this).prev(); num = 0; curren_group = name; } num++; }); $info.html(to_info_text(curren_group, num)); $(this).prev().children('td').css("border-bottom", "dotted 2px"); }); function to_info_text(name, num) { num_max = "山田 柿崎 森本 森谷".indexOf(name) == -1 ? 12 : 2; return name + "研: (" + num + "/" + num_max + ")"; } /* 山田 柿崎 森本 森谷 */