QOL Features for Blacket!
// ==UserScript==
// @name Blacket QOL
// @namespace https://blacket.org
// @version 1.0.0
// @description QOL Features for Blacket!
// @author Piotr
// @match https://blacket.org/*
// @icon https://blacket.org/favicon.ico
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.onkeypress = function (e) {
e = e || window.event;
if (e.keyCode === 99 && !document.querySelector('input:focus') && !document.querySelector('textarea:focus')) blacket.toggleChat();
};
console.log("[Blacket QOL] Successfully launched!")
})();