NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 「シネ・リーブル」の座席予約の同意ボタンを自動で押すスクリプト // @namespace https://openuserjs.org/users/shuuji3 // @version 0.2 // @description Automatically check the annoying checkbox on the Theatre Libre reserving page. // @copyright 2018, shuuji3 (https://openuserjs.org/users/shuuji3) // @author TAKAHASHI Shuuji // @match http://cinelibre-ikebukuro.ttcgreserve.jp/CLIB/schedule/y_pcTop.php // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; const checkbox = document.querySelector('input[type="checkbox"]'); checkbox.setAttribute('checked', 'checked'); goNext(); // function to go the next page implemented by site })();