Scans the entire current webpage for unique email addresses ([email protected]) and displays them in a simple alert box if any are found. The script remains completely silent if no emails are detected.
This user script uses a simple, fast regular expression to find potential email addresses within the visible text of any webpage. It is designed for simplicity, adherence to Greasy Fork rules, and a clean user experience. It extracts all matches, removes any duplicates, and then presents the final list in a clear alert box.
document.body.innerText, focusing only on text visible to the user.@run-at document-idle to ensure the script runs after the main content has loaded.