Created
June 2, 2022 14:45
-
-
Save panam510/bfd1c6d95428d55fa32438e622d4d5da to your computer and use it in GitHub Desktop.
PassMarket AutoInput
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 PassMarket AutoInput | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description kana, birthday | |
| // @author You | |
| // @match https://passmarket.yahoo.co.jp/order/buy/additional* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=undefined. | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| document.getElementsByName("additional_lastname_kana")[0].value = 'ヤマダ'; | |
| document.getElementsByName("additional_firstname_kana")[0].value = 'タロウ'; | |
| document.getElementsByName("additional_birthday_year")[0].value = '1999'; | |
| document.getElementsByName("additional_birthday_month")[0].value = '12'; | |
| document.getElementsByName("additional_birthday_day")[0].value = '31'; | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment