Last active
December 23, 2015 20:09
-
-
Save pastak/6687427 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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