goal of this script is to make fullcreen great again
目前為
// ==UserScript==
// @name rabbit flush
// @namespace hebiohime
// @description goal of this script is to make fullcreen great again
// @include *://www.rabb.it/*
// @version 1
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @run-at document-end
// ==/UserScript==
$(document).keypress(function(e){
var checkWebkitandIE=(e.which==72 ? 1 : 0);
var checkMoz=(e.which==72 ? 1 : 0);
if (checkWebkitandIE || checkMoz) {
$(".roomControlsLayoutView").toggle();
}});