Skip to content

Instantly share code, notes, and snippets.

@pastak
Last active December 23, 2015 20:09
Show Gist options
  • Select an option

  • Save pastak/6687427 to your computer and use it in GitHub Desktop.

Select an option

Save pastak/6687427 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name
// @namespace userjs.com.cosmio.pastak
// @description
// @include https://student.iimc.kyoto-u.ac.jp/iwproxy/KULASIS/student/la/timeslot/timeslot_list
// @include https://student.iimc.kyoto-u.ac.jp/iwproxy/KULASIS/student/la/entry/*
// ==/UserScript==
(function(){
var classLinks = document.querySelectorAll('td.timetable_filled a:not([title="削除"]):not([title="授業を追加"])');
for (var i = 0; i < classLinks.length; i++){
classLinks[i].textContent = classLinks[i].title
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment