[GET]Javascript for sending Facebook Friend Requests

I think your script can be implemented by creating a html file on the server and running Facebook page in iframe, is not it?
There are different kind of modal windows when friend invite, they also need to close and stop the process.
I don't think it's possible to embed Facebook using iframe. Most big websites block that.

i need to ask u a question how many request should i send per day please t cant find the answare sorry for my bad english
Depends on your account. I do the following:
50 per day on the first 2-5 days
100 per day for 1-2 weeks
after that 200 per day

But I guess you can do more. Just make sure to phone verify your accounts & make them look real.

Thanks for this script.Can i modify it to accept friend requests ?
You can do with it whatever you want. I will add more features myself when I'm done with college exams.
 
Another kind of popup that I get after 80-100 friends requests.
2016-08-06_21-57-32.png


If you have time and desire, could you write a script to remove all sent friends requests?
https://www.facebook.com/friends/requests/?fcref=ff&outgoing=1
 
You should stop adding friends when you start getting these popups..
Of course, if you add a check for this popups, it will improve safety. In the case of the first popup to need to count their appearance, if the popup is displayed more than 10 or 50 times, you need to stop the work. In the second case, you need stop work immediately.
Good idea, shouldn't be too complicated.
Thank you very much in advance.
 
can u make a tool like this itt's for adding friends from a list of ids
 
can u make a tool like this itt's for adding friends from a list of ids
I'll think about it. However adding 1000 friends in 5 secs is definitely not safe and will very likely get you banned.
 
Known bug: If you've executed the script once, following executions may have a visual bug. Reloading the page fixes it.
But as I said, I will rewrite the code and improve the whole script coming week.

Sound intetesting. Thank man,
Glad I could help! :)
 
Another kind of popup that I get after 80-100 friends requests.
View attachment 81771

If you have time and desire, could you write a script to remove all sent friends requests?
https://www.facebook.com/friends/requests/?fcref=ff&outgoing=1
hey what's the delay you put between two action I'm looking for a delay with which no popup appears
 
hey what's the delay you put between two action I'm looking for a delay with which no popup appears

I don't think the popup is related to the delay, the popup appears when Facebook's algorithm thinks you don't know the person you are trying to add.

I feel like I get the same amount of popups no matter what delay I chose - or am I wrong?
 
I don't think the popup is related to the delay, the popup appears when Facebook's algorithm thinks you don't know the person you are trying to add.

I feel like I get the same amount of popups no matter what delay I chose - or am I wrong?
YES same thing here but, when i add from suggested friends nothing "the popups" shows up the problem is that, all the suggested friends are from tier 3 world, i tried adding 50 friends only every few hours but the problem persisted, conclusion we have to create more accounts
 
please http://www.blackhatworld.com/members/nonilol.850538/
correct this javascript :
Code:
javascript: var inputs = document.querySelectorAll('.FriendRequestAdd:not(.hidden_elem)');
var inputs1 = document.getElementsByClassName(' _42ft _4jy0 layerConfirm uiOverlayButton _4jy3 _4jy1 selected _51sy ');
var inputs2 = document.getElementsByClassName('autofocus  layerCancel _4jy0 _4jy3 _4jy1 _51sy selected _42ft'); 

for(i= 0;i<2;i++) { inputs[i].click();inputs1[i].click();inputs2[i].click();} ;
 
var inputs1 = document.getElementsByClassName(' _42ft _4jy0 layerConfirm uiOverlayButton _4jy3 _4jy1 selected _51sy ');
var inputs2 = document.getElementsByClassName('autofocus layerCancel _4jy0 _4jy3 _4jy1 _51sy selected _42ft');
Do you really want to refer to the dynamic attribute?:)
 
Do you really want to refer to the dynamic attribute?:)
Im not an expert i dont know what are you talking about, im trying to close the popups by clicking the confirmation button and the close button in the same time this javascript work
Code:
javascript: var inputs = document.querySelectorAll('.FriendRequestAdd:not(.hidden_elem)');
var inputs1 = document.getElementsByClassName(' _42ft _4jy0 layerConfirm uiOverlayButton _4jy3 _4jy1 selected _51sy ');
var inputs2 = document.getElementsByClassName('autofocus  layerCancel _4jy0 _4jy3 _4jy1 _51sy selected _42ft');
for(i= 0;i< 5;i++) { inputs1[i].click();} ;
but when i try to combine everything nothing is working by the way it's closing the the confirmation popups but only five popups change number five to any number you want
 
Thanks.. but could you tweak it so that it only adds people that recently commented?
Can't think of an easy way to do this because there are no "add friends" buttons displayed alongside the commenters name.
Adding people who liked a post works well though.

By the way, I'm working on adding more features (I plan to create a little tool for Facebook) but sinceI'm moving to UK in two weeks I'm currently kinda busy.
I don't know yet when I'll be able to finish this.
 
Back
Top