Twitter Mobile - Enter to send message

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

当前为 2016-09-19 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Twitter Mobile - Enter to send message
  3. // @version 0.3
  4. // @description This script allows user to send message by pressing the enter key on Twitter Mobile DM
  5. // @author himalay
  6. // @namespace https://himalay.com.np
  7. // @include *://mobile.twitter.com/messages/*
  8. // @run-at document-end
  9. // ==/UserScript==
  10.  
  11. document.addEventListener('keydown', function(e) {
  12. if (!e) e = window.event;
  13. if (e.keyCode === 13 && !e.shiftKey) {
  14. e.preventDefault(); document.querySelector('[data-testid="dmComposerSendButton"]').click();
  15. }
  16. }, false);