Skip to content

Instantly share code, notes, and snippets.

@false-git
Last active July 30, 2021 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save false-git/e31f1239030858beba04bfb967ea0685 to your computer and use it in GitHub Desktop.
Save false-git/e31f1239030858beba04bfb967ea0685 to your computer and use it in GitHub Desktop.
自衛隊東京ワクチン接種web予約 autofill
// ==UserScript==
// @name 自衛隊東京ワクチン接種web予約
// @version 1
// @grant none
// @include https://www.vaccine.mrso.jp/sdftokyo/VisitNumbers/visitnoAuth*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
// ==/UserScript==
(function($){
$('#VisitnoAuthName').val("市区町村コード");
$('#VisitnoAuthVisitno').val("接種券番号");
$('#VisitnoAuthYear').val("生年");
$('#VisitnoAuthMonthMonth').val("月");
$('#VisitnoAuthDayDay').val("日");
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment