您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Flash 版の ID 入力画面までスキップ
// ==UserScript== // @name 天鳳 自動接続 // @description Flash 版の ID 入力画面までスキップ // @include http://tenhou.net/0/ // @include https://tenhou.net/0/ // @include http://tenhou.net/0/?* // @include https://tenhou.net/0/?* // @version 1.0.1 // @author xulapp // @namespace https://twitter.com/xulapp // @grant none // @license MIT // ==/UserScript== // jshint esnext:true, moz:true, globalstrict:true, browser:true 'use strict'; try { document.querySelector('form[name="f"]').submit(); } catch (e) { }