How To Invite All Friends on Facebook in Single click using browser javascript console
There are small trick this is a huge time-saver when you want to do bulk action. like
- Send bulk invition on Facebook
- Send many Friends Request at once
- Like all posts on Facebook with a single click
The Scope not only restricted to Facebook its works on almost every website, where you need to click multiple times on same object, like facebook where we need to click on invite button to send invitation to each friend. So if you have large numbers of friends and want to send invitation to Like Facebook Page, You have to click a lot.
Well solution is here
Step 1
1. Find the Class Name of object. Open Dev Tool Window in Chrome
- On Windows F12, Ctrl + Shift + I
- On Mac Cmd + Opt + I
2. Now Click "Select an element" button (Windows Ctrl + Shift +C) and Select the object.
3. And Last Find Class Name Of Object like : class="UFILikeLink _4x9- _4x9_ _48-k"
Step 2
1. Go to Console Tab by click OR Use the keyboard shortcuts. On Windows and Linux: Ctrl + Shift + J. On Mac: Cmd + Option + J.
2. Copy and Paste Following code and Replace Class Name UFILikeLink _4x9- _4x9_ _48-k
JavaScript consol Code:
// Like all posts on Facebook with a single click
javascript:var inputs = document.getElementsByClassName('UFILikeLink _4x9- _4x9_ _48-k');
for(var i=0; i<inputs.length;i++) {
inputs[i].click();
}
NOTE: This video is for educational purposes only. Please do not use this method for illegal or malicious activities, Otherwise your account may disabled.The site and owner is no way responsible for anything.
No comments: