【Open放送室】Ctrl Enterコメント送信

Ctrl + Enterで送信

// ==UserScript==
// @name         【Open放送室】Ctrl Enterコメント送信
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Ctrl + Enterで送信
// @author       You
// @match        https://housoshitu.live/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=housoshitu.live
// @grant        none
// @license MIT 
// ==/UserScript==

setTimeout(()=>{

    const commentInput = document.querySelector('input[placeholder="コメントを入力"]');
    const sendBtn = commentInput.parentElement.querySelector('button');

    commentInput.addEventListener("keydown",(e)=>{
        if(e.code === 'Enter' && e.ctrlKey) sendBtn.click();
    })


},500)