Index: gc_lang/fr/webext/content_scripts/editor.js ================================================================== --- gc_lang/fr/webext/content_scripts/editor.js +++ gc_lang/fr/webext/content_scripts/editor.js @@ -123,11 +123,11 @@ * _getParsableNodes (xRootNode) { // recursive function try { for (let xNode of xRootNode.childNodes) { - if (xNode.className !== "moz-cite-prefix" && xNode.className !== "moz-forward-container" + if (xNode.className !== "moz-cite-prefix" && xNode.className !== "moz-forward-container" && xNode.className !== "moz-signature" && ! (bThunderbird && xNode.tagName == "BLOCKQUOTE" && xNode.cite) && ( xNode.nodeType == Node.TEXT_NODE || (xNode.nodeType == Node.ELEMENT_NODE && !xNode.textContent.startsWith(">")) ) && xNode.textContent !== "") { // console.log("tag:", xNode.tagName, "class:", xNode.className, " nodeType:", xNode.nodeType, " type:", xNode.type); if (xNode.tagName === undefined) {