/*
* @title IME変換中のエンターキーで送信される!への対処法
* @description https://tech.classi.jp/entry/2024/04/23/183000
* @include http://*
* @license MIT License
* @javascript_url
*/
document.addEventListener('keydown', function(event) {
if (event.key === 'Enter' && event.isComposing) {
event.stopPropagation();
}
},{capture: true});