WhatsApp Web - Disable Ctrl+Delete Shortcut

Prevents WhatsApp Web from clearing chat when pressing Ctrl+Delete

  1. // ==UserScript==
  2. // @name WhatsApp Web - Disable Ctrl+Delete Shortcut
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Prevents WhatsApp Web from clearing chat when pressing Ctrl+Delete
  6. // @author oscardianno
  7. // @match https://web.whatsapp.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. document.addEventListener('keydown', function(e) {
  13. if (e.key === 'Delete' && e.ctrlKey) {
  14. e.stopImmediatePropagation();
  15. }
  16. }, true);