This is tol to get much email and add to be our friend in facebook but before that i have one again
https://m.facebook.com/friends/center/requests/outgoing.
Lets follow this :
1. instal this sofwere https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo
2. copy this script to sofwere that instaled above in add new script button
// ==UserScript==
// @name Scrap UIDs & Mails
// @namespace Otomatis
// @description Melakukan scrap dengan mudah
// @include http://*.facebook.com/*
// @include http://facebook.com/*
// @include https://*.facebook.com/*
// @version 1.01
// ==/UserScript==
if (document.getElementsByClassName ('UIPage_LoggedOut'). length <= 0) {
function getUIDs () {
var uids = [];
var resultsID = document.querySelectorAll('#browse_result_area div[data-bt*="{\\"id"]');
for (var i = 0; i < resultsID.length; i++) {
var userID = JSON.parse(resultsID[i].getAttribute('data-bt'));
if (userID && userID.id) {
uids.push(userID.id);
}
}
var uidsLink = document.createElement('a');
uidsLink.setAttribute('href', encodeURI('data:attachment/txt;charset=utf-8,' + uids.join('\r\n')));
uidsLink.setAttribute('download', 'uids.txt');
document.body.appendChild(uidsLink);
uidsLink.click();
document.body.removeChild(uidsLink);
alert(uids.length + ' uids collected...');
}
function getMails () {
var mails = [];
var resultsMail = document.querySelectorAll('a._7kf._8o._8s.lfloat._ohe');
for (var b = 0; b < resultsMail.length; b++) {
var userMail = resultsMail[b].getAttribute('href');
var pisah1 = userMail.split('com/');
var pisah2 = pisah1[1].split('?',1);
var hasilnya = pisah2[0];
if (userMail) {
var emailFB = hasilnya + '@facebook.com';
// console.log(emailFB);
mails.push(emailFB);
}
}
var mailsLink = document.createElement('a');
mailsLink.setAttribute('href', encodeURI('data:attachment/txt;charset=utf-8,' + mails.join('\r\n')));
mailsLink.setAttribute('download', 'mails.txt');
document.body.appendChild(mailsLink);
mailsLink.click();
document.body.removeChild(mailsLink);
alert(mails.length + ' mails collected...');
}
function scrollPage() {
window.scrollTo(0, 1000 + document.body.offsetHeight);
}
var timer = null;
var isTimerRunning = false;
function toggleScrolling() {
if (!isTimerRunning) {
document.getElementById('scrollBtnTxt').value = 'Stop Scrolling';
timer = setInterval(scrollPage, 1000);
isTimerRunning = true;
} else {
document.getElementById('scrollBtnTxt').value = 'Start Scrolling';
clearInterval(timer);
isTimerRunning = false;
}
}
var btnsrc = '<div id="uidScraperOptions" style="position:fixed;z-index:1000;"><div class="uiButtonGroup uiButtonGroupOverlay"><span id="scrollBtn" class="uiButtonGroupItem buttonItem"><div><label class="uiButton uiButtonOverlay"><input id="scrollBtnTxt" value="Start Scrolling" type="button"></label></div></span></div><div class="uiButtonGroup uiButtonGroupOverlay"><span id="getUidsBtn" class="uiButtonGroupItem buttonItem firstItem"><div><label class="uiButton uiButtonOverlay"><input value="Download UID" type="button"></label></div></span></div><div class="uiButtonGroup uiButtonGroupOverlay"><span id="getMailsBtn" class="uiButtonGroupItem buttonItem firstItem"><div><label class="uiButton uiButtonOverlay"><input value="Download Email" type="button"></label></div></span></div>';
document.getElementById('pagelet_bluebar').insertAdjacentHTML('afterEnd', btnsrc);
document.getElementById('uidScraperOptions').style.display = 'none';
document.getElementById('userNavigation').innerHTML += '<li class="menuDivider"></li><li role="menuitem"><a id="toggleScraperOptions" class="navSubmenu" href="#">Show Graph Scraper</a></li>';
document.getElementById('toggleScraperOptions').addEventListener('click', function () {
var searchResultsArea = document.getElementById('initial_browse_result');
if (document.getElementById('uidScraperOptions').style.display === 'none') {
if (searchResultsArea) {
searchResultsArea.style.marginTop = '30px';
}
document.getElementById('uidScraperOptions').style.display = 'inline-block';
document.getElementById('toggleScraperOptions').innerText = 'Hide Graph Scraper';
} else {
if (searchResultsArea) {
searchResultsArea.style.marginTop = '0px';
}
document.getElementById('uidScraperOptions').style.display = 'none';
document.getElementById('toggleScraperOptions').innerText = 'Show Graph Scraper';
}
}, false);
document.getElementById('getUidsBtn').addEventListener('click', getUIDs, false);
document.getElementById('getMailsBtn').addEventListener('click', getMails, false);
document.getElementById('scrollBtn').addEventListener('click', toggleScrolling, false);
}
3. Save
4. Open or refresh your facebook.
5. Check in facebook scroller there are post "Show Graph Scraper".
To use that tool, klik button above => type people who like name fage on facebook's search tool=> press downlad button to get emil user => copy all email => paste in email box
ok that all.thank you.

About the Author
0 comments: