משלים gmail.com יש לכתוב @ ולסמן את התו ואז ללחוץ על הסמניה
javascript:(function() { const selection = window.getSelection(); if (!selection.rangeCount) return; const range = selection.getRangeAt(0); const text = selection.toString(); if (!text) return; const converted = text.replace(/@/g, '@gmail.com'); range.deleteContents(); range.insertNode(document.createTextNode(converted)); })();