Skip to content

Instantly share code, notes, and snippets.

@flexbox
Last active September 14, 2022 17:39
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save flexbox/6338dfb285b007f98289ae3e61e3cd19 to your computer and use it in GitHub Desktop.
Save flexbox/6338dfb285b007f98289ae3e61e3cd19 to your computer and use it in GitHub Desktop.
From 0 to 10k+ contact in 2 months - https://flexbox.gumroad.com/l/job-hunt-automation

Linkedin Growth Hacking 101

Hack my profile

Inspirez-vous de mon profil en trouvant votre punchline https://www.linkedin.com/in/david-leuliette-456701121/

Pour vos expériences, ne racontez pas votre vie.
Trouvez 3 points qui vont droit au but.

N'oubliez pas de m'ajouter car je le met régulièrement à jour en fonction de mes expérimentations

Ajouter de nouveaux contact

1. Afficher la page de recommandations

Mon réseau > Les connaissez vous ?

2. Automatiser l'envoi d'invitations

Clic droit > inspecter
Aller dans l'onglet console
et coller $('[data-control-name="invite"]').click();

Cette technique m'a permis d'envoyer des batch de 500 invitations.

Cooldown des demandes

⚠️ Au bout de 3000 demandes d'invitations en attente, l'ensemble des nouvelles invitations n'est plus pris en compte.
Si cela vous arrive, go to https://www.linkedin.com/mynetwork/invitation-manager/sent/, supprimez toutes les invitations en attente et c'est reparti pour un tour 😉

Clic droit > inspecter
Aller dans l'onglet console
et coller $('[data-control-name="withdraw_single"]').click();

Demander des recommandations

Maintenant que vous avez une base de "nouveaux amis" qui augmente régulièrement, vous pouvez demander des recommandations pour hacker vos futurs recruteurs. Voici un exemple de message que j'envoie (En anglais mais je pense que vous comprendrez le principe)

Hi there!

You have a great profile!
What skills would you like to be endorsed for?

My project for the summer is getting my professional and LinkedIn network in order, so the first thing that I am doing is a round of endorsements for creatives.

When you have a moment, could you endorse my profile for ANY of these 5 skills?

- Git
- Front-end
- Design
- Ruby on Rails
- CSS

https://www.linkedin.com/in/david-leuliette-456701121

All the best,
David

Robots on march

Avec Google Chrome télécharger l'extention resource-override

Ajoutez une règle pour lancer le script à chaque visite sur linkedin Option > Load Rule

a = setInterval(function(){
$(window).scrollTop($(document).height());
}, 500);
setTimeout(function(){
clearInterval(a);
var $buttons = $('[data-control-name="invite"]');
for(var i = 0; i <= $buttons.length; i++){
$buttons[i].click();};
},10000);
@z4c
Copy link

z4c commented May 15, 2017

top, merci

@Ateliers-Modernes
Copy link

merci

@LMNT1212
Copy link

Hello ! Comment je peux l'arrêter ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment