Index: gc_lang/fr/webext/content_scripts/init.js ================================================================== --- gc_lang/fr/webext/content_scripts/init.js +++ gc_lang/fr/webext/content_scripts/init.js @@ -188,11 +188,11 @@ findOriginEditableNode: function (xNode) { if (!xNode) { return null; } - if (xNode.tagName == "TEXTAREA" || xNode.tagName == "INPUT" || xNode.tagName == "IFRAME") { + if (xNode.tagName == "TEXTAREA" || xNode.tagName == "INPUT" || xNode.tagName == "IFRAME" || document.location.host == "twitter.com") { return xNode; } const findNode = function (xNode) { return (!xNode.parentNode.isContentEditable) ? xNode : findNode(xNode.parentNode); }