Skip to content

Copy and paste the script in the console while the endorsement box showing

Notifications You must be signed in to change notification settings

alihalabyah/LinkedIn-Auto-Endorse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

LinkedIn-Auto-Endorse

Copy and paste the following script in the console while the endorsement box showing.

var timeout = 1000;
var action = function() {
    // Loop the endorse buttons
    $('.endorse-action').each(function(index, value){
      setTimeout(function() {
        $(value).trigger('click', true );
        console.log($('.endorse-action').parent().find('.endorse-question strong:eq(0)').html() + ' knows ' + $('.endorse-action').parent().find('.endorse-question strong:eq(1)').html());
      }, 1500);
    });
    setTimeout(action, timeout);
};
action();

About

Copy and paste the script in the console while the endorsement box showing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published