Twitter Mobile - Enter to send message

This script allows user to send message by pressing the enter key on Twitter Mobile DM

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Twitter Mobile - Enter to send message
// @version      0.3
// @description  This script allows user to send message by pressing the enter key on Twitter Mobile DM
// @author       himalay
// @namespace    https://himalay.com.np
// @include     *://mobile.twitter.com/messages/*
// @run-at document-end
// ==/UserScript==

document.addEventListener('keydown', function(e) {
    if (e.keyCode === 13 && !e.shiftKey) {
      document.querySelector('[data-testid="dmComposerSendButton"]').click();
      e.preventDefault();
    }
}, false);