forked from lovmoon3k/useful-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetAllEmailsInWeb.js
30 lines (28 loc) · 1.27 KB
/
getAllEmailsInWeb.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export default {
icon: `<i class="fa-solid fa-at"></i>`,
name: {
en: "Extract all Emails from website",
vi: "Trích xuất mọi emails từ trang web",
},
description: {
en: "Extracts all emails and displays them in a popup iFrame (enable popups!)",
vi: "Trích xuất tất cả emails trong web và hiện trong popup mới",
},
blackList: [],
whiteList: [],
func: function () {
// source code from: https://bookmarklet.vercel.app/
var StrObj = document.body.innerHTML;
var haystack = StrObj.toString();
var regex =
/(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/g;
var found = haystack.match(regex);
if (found !== null && found !== "") {
mailz = found.join("\r\n<br>");
w = window.open("", "mailz", "scrollbars,resizable,width=400,height=600");
w.document.write(mailz);
} else {
alert("No emails found on page");
}
},
};