追加
当前为
// ==UserScript==
// @name PC on Senpai-agar
// @namespace ふぃ
// @version 1
// @description 追加
// @match http://senpai-agar.online/*
// @copyright fuck
// ==/UserScript==
//不要ボタンの削除
$('#btDualAgar').remove();
$('#btSaoMobile').remove();
$('.btn-ext-link').remove();
//接続ボタンの追加
$('ex_server_links').append("<div><p>SAO以外への接続をする</p></div>");
$(function() {
$('#ex_server_links').prepend("<div><a id='join' id='join' class='btn btn-play-guest btn-success btn-needs-server'data-role='button'>モバイル</a></div>");
$('#join').on('click', function() {
connect('ws://133.130.99.220:2530');
});
});