Created
March 22, 2012 04:44
-
-
Save masaakif/2156095 to your computer and use it in GitHub Desktop.
Suginami Ward library tweaks
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 Suginami Ward Tweaks | |
| // @namespace http://gist.github.com/2156095 | |
| // @include https://www.library.city.suginami.tokyo.jp/TOSHOW/asp/WwYoySettei.aspx* | |
| // ==/UserScript== | |
| tweaks(); | |
| function tweaks() { | |
| var comboLib = document.evaluate("//select[@id='cmbUkeKan']", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; | |
| comboLib.selectedIndex = 5; // 宮前 | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment