Skip to content

Instantly share code, notes, and snippets.

@panam510
Created June 2, 2022 14:45
Show Gist options
  • Select an option

  • Save panam510/bfd1c6d95428d55fa32438e622d4d5da to your computer and use it in GitHub Desktop.

Select an option

Save panam510/bfd1c6d95428d55fa32438e622d4d5da to your computer and use it in GitHub Desktop.
PassMarket AutoInput
// ==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