Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/799f367a3c906474c6876429c3c81cfa.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript== // @name Twicas Keyboard Shortcut // @namespace me.nzws.us.twicas_keyboard_shortcut // @version 1.0.1 // @description ツイキャスにキーボードショートカットを追加します // @author nzws // @match https://twitcasting.tv/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/386478/Twicas%20Keyboard%20Shortcut.user.js // @updateURL https://update.greasyfork.icu/scripts/386478/Twicas%20Keyboard%20Shortcut.meta.js // ==/UserScript== const $ = q => document.querySelector(q); (function() { // 配信ページ: Ctrl (または command) + Enterでコメントを投稿 const commentTextArea = $('.tw-comment-post .tw-textarea'); if (commentTextArea) { commentTextArea.onkeyup = e => { if (e.keyCode === 13 && (e.metaKey || e.ctrlKey)) { $('.tw-comment-post-operations .tw-button-primary').click(); } }; } })();