Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/80bdbd983b3e38385f88a022614e7b29.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name 【twitcasting】QuickComment
// @namespace http://tampermonkey.net/
// @version 0.2.2
// @description ctrl + Enterで送信
// @author You
// @match https://ja.twitcasting.tv/*
// @match https://twitcasting.tv/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitcasting.tv
// @grant none
// @license MIT
// @downloadURL https://update.greasyfork.icu/scripts/511206/%E3%80%90twitcasting%E3%80%91QuickComment.user.js
// @updateURL https://update.greasyfork.icu/scripts/511206/%E3%80%90twitcasting%E3%80%91QuickComment.meta.js
// ==/UserScript==
function main(){
const buttonTW = document.querySelector('button.tw-button-primary');
const textareaTW = document.querySelector('textarea.tw-textarea');
if(buttonTW === null || textareaTW === null){
setTimeout(()=>{
main();
return;
},300)
}else{
console.log('ロード完了');
textareaTW.addEventListener("keydown",(e)=>{
if(e.code === 'Enter' && e.ctrlKey) buttonTW.click();
})
}
}
main();