Last active
October 3, 2017 18:10
-
-
Save deepakrpathak/b477a48a4a9c37a330af to your computer and use it in GitHub Desktop.
Contact book creator for Whatsapp on web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Whatsapp on Web Contacts | |
Author : Deepak Pathak | |
*/ | |
(function() { | |
function t() { | |
var t = "<style>div{margin:1em;display:inline-block;max-width:300px}img{object-fit:cover;width:300px;height:200px;}span{float:right;font-size:.85em}h3{padding:10px 5px;font-size:1em}h2{margin:2em;font-size:1.1em;line-height:1.4em}</style>"; | |
for (var e in list) t += action ? '<div><img src="' + list[e].thumb.replace("t=s", "t=l") + '"><h3>' + list[e].name + "<span>+" + e + "</span></h3></div>" : list[e].name + "," + e + "<br>"; | |
action && (t += "<h2>Save as PDF by right-click -> Print.. or ctrl/cmd+p. <em>Written by <a href='http://deepakpathak.ghost.io/'>Deepak Pathak</a></em>.</h2>"), $("body").html(t).css("padding", "10px").css("overflow", "visible") | |
} | |
function e() { | |
$("div.chat").each(function() { | |
var t = $(this).find("img.avatar-image.is-loaded"), | |
e = $(this).find("div.chat-title"); | |
if (t && t[0] && e && e[0]) { | |
var a = t[0].src.match(/u=(\d*)/); | |
a && ($("span.drawer-title-body").html("Extracting contacts " + "....".substring(Math.ceil(4 * Math.random()))), list[a[1]] = { | |
thumb: t[0].src, | |
name: e[0].innerText | |
}) | |
} | |
}), old = $("div.drawer-body").scrollTop(), $("div.drawer-body").scrollTop(old + 72), old != $("div.drawer-body").scrollTop() ? setTimeout(e, 200) : t() | |
} | |
var a = document.createElement("script"); | |
a.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js", document.getElementsByTagName("head")[0].appendChild(a), action = !0, list = {}, old = -1, count = 0, -1 == old && (document.getElementsByClassName("icon-chat")[0].click(), action = confirm("Press OK to create a photo address book or press Cancel to create a CSV file that you can later import into your Google contacts."), setTimeout(e, 1e3)) | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How can we open specific chat ?