Skip to content

Instantly share code, notes, and snippets.

View Am607's full-sized avatar
🏠
Working from home

AkbarMasterpadi Am607

🏠
Working from home
View GitHub Profile
@shaneapen
shaneapen / WAXP.js
Last active August 10, 2024 23:05
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 = {},
@codediodeio
codediodeio / database.rules.json
Last active September 1, 2024 22:58
Common Database Rules for Firebase
// No Security
{
"rules": {
".read": true,
".write": true
}
}