Bir çözüm daha buldum. Çık-Gir yapınca F5 attığımda tekrar gidiyordu. Aşağıdaki kodu Konsol'a yapıştırınca sorun çözülüyor.
// ==UserScript== // @name           Fix whatsapp firefox paste // @version        1.0 // @namespace      PlaceboZA // @author         PlaceboZA // @description    Fixes paste function on whatsapp for Firefox // @include        https://web.whatsapp.com/* // @include        http://web.whatsapp.com/* // ==/UserScript==
function handlePaste(e) { var data = (e.originalEvent || e).clipboardData.getData('text/plain'); if ((data || '') !== '') { e.stopPropagation(); } }
 addEventListener('paste', handlePaste, true);