আপনার সব বন্ধুদের ইনভাইট করুন আপনার ফেসবুক পেজে!



1.প্রথমে পেজে যান (যেমন: https://facebook.com/tips4solution) কভার ফটোর পাশে ইনভাইট মেনু থেকে See all এ ক্লিক করুন ।
2. একটা ড্রপডাউন বক্স ওপেন হবে, ক্লিক Search All Friends
3. Scroll ALL the way down until names stop loading (I found it easy to click the first name and then hold down the spacebar or Page Down button)
এবার নিচের থেকে যে কোন একটি কোড কপি করে নিন:
javascript:var inputs = document.getElementsByClassName('uiButton _1sm');
for(var i=0; i<inputs.length;i++) {
inputs[i].click();
}




দ্বিতীয় কোডঃ 



var inputs = document.getElementsByClassName('uiButton _1sm');
for(var i=0; i<inputs.length;i++) {
inputs[i].click();
}

 তৃতীয় কোড 




var inputs = document.getElementsByTagName("input");

for (var i=0; i < inputs.length; i++) {
if (inputs[i].getAttribute('type') == 'checkbox') {
inputs[i].click();
}
}
 
 


আশা করি সবগুলো কোডই কাজ করবে। 

গুগল ক্রোম ব্যবহার করলে:
5. Press (CTRL+Shift+J) for WINDOWS or (Command+ Option+J) for MAC on your keyboard.
6. Paste the code into the box at the bottom and press enter (next to the blue ">")
7. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.
ফায়ারফক্স হলে:
5. Press (CTRL+Shift+K) for WINDOWS or (Command+Option+K) for MAC on your keyboard
6. Paste the code into the box at the bottom and press enter (next to the blue ">>").
7. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.
সাফারি হলে:
5.  Preferences থেকে - Advanced - check "Show Develop menu in menu bar" and close the preferences window.
6. Go to Develop - Show Error Console (or Command O +ption + C)
5. Paste the code into the box at the bottom and press enter (next to the blue ">").
Internet Explorer হলে:
5. Press F12 on your keyboard
6. Click the "Console" tab
7. Paste the code into the box at the bottom and press enter.
8. For large friends list, this may utilize all your resources and will cause the page to freeze and be unresponsive. Just wait a few minutes until all the names get selected.

Comments