Skip to content

Instantly share code, notes, and snippets.

View fdopertussatti's full-sized avatar

Fernando Pertussatti fdopertussatti

View GitHub Profile
@fdopertussatti
fdopertussatti / WhatsAppGroupContactExport.js
Created May 27, 2023 14:37 — forked from mzahidriaz/WhatsAppGroupContactExport.js
WhatsApp Group Contacts Export: This will download the members of group with their phone number, whatsapp name and if contact is stored on phone
class ContactFinder {
#db;
#chatToFind;
#dbName = "model-storage";
#chatsCol = "chat";
#contactCol = "contact";
#groupCol = "participant";
constructor(chatGroupName) {
this.#chatToFind = chatGroupName;
@fdopertussatti
fdopertussatti / WAXP.js
Created May 27, 2023 14:36 — forked from shaneapen/WAXP.js
WhatsApp Group Contacts Exporter
WAXP = (function(){
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var SCROLL_INTERVAL = 600,
SCROLL_INCREMENT = 450,
AUTO_SCROLL = true,
NAME_PREFIX = '',
UNKNOWN_CONTACTS_ONLY = false,
MEMBERS_QUEUE = {},