Tag: Facebook

Dribbble auto follow script for Teams and Members

Dribbble auto follow script is a way to easily follow your favourite Teams or Members.

Buy me a coffeeWanna support the page?!

Use the Dribbble auto follow script on Members or Team pages

This is just a quick help for the beginners. I would advise not to use this a lot and to respect the Dribbble’s terms of use and the awesome job that they are doing.

How to use the script:

  1. Go to the page with accounts
  2. Open one shot/project
  3. Open the Console pressing Ctrl + Shift + J (Windows / Linux) or Cmd + Opt + J (Mac) 
  4. Copy the code below and paste it into the Console tab 
  5. Keep the Console window small
  6. Press Enter and wait
// Dribble: Team Follow
 // Updated: 2020-03-24
 // This script is made for demonstrative purposes only. 
 // Use at your own risk. 
 // Respect the Dribbble's policy and terms of use.
 function initFollow(i) {
   setTimeout(function(){
     console.log(inputs[i]);
     if ($(inputs[i]).hasClass('followed-by-current-user')) {
       console.log('Skipping…');
     } else {
       console.log('Following…');
       inputs[i].querySelector('.form-btn.tipsy-mobile-disabled.light-btn.follow').click();
     }
   }, Math.floor((Math.random() * 10000))+5);
 }
 var inputs = document.querySelectorAll('.player-cards .scrolling-row.player');
 for(var i=1; i<inputs.length;i++) {
   initFollow(i);
   console.log('Running…please wait…');
 }

Use the Dribbble auto follow script on shots

How to use the script:

  1. Go to Shots page or search for some shots
  2. Open one shot/project
  3. Open the Console pressing Ctrl + Shift + J (Windows / Linux) or Cmd + Opt + J (Mac) 
  4. Copy the code below and paste it into the Console tab 
  5. Keep the Console window small
  6. Press Enter and wait
// Dribble: Profile follow
 // Updated: 2020-03-24
 // This script is made for demonstrative purposes only. 
 // Use at your own risk. 
 // Respect the Dribbble's policy and terms of use.
 function loop() {
 console.log('Script loading…please wait…');
 var Time1 = Math.ceil(Math.random() * 10) + 3;
 var Time2 = Math.ceil(Math.random() * 10) + 3;
 setTimeout(function() {
 if ( $('.shot-overlay .attribution.followed-by-current-user').length>0) {
 console.log('Profile already followed. Skipping…');
 } else {
 console.log('Follow the profile…');
 $('.shot-overlay .form-btn.follow.shot-follow.sentence-btn').click(); 
 } 
 setTimeout(function() {
 if ($('li.shot-nav-next > a').length) {
 console.log('Loading next project…');
 $('li.shot-nav-next > a').click(); 
 } else {
 console.log('Reload the page and run the script manually.!');
 }
 loop();  
 }, Time1 * 1000);
 }, Time2 * 1000);
 }
 loop(); 

Team unfollow script

To unfollow the profiles use the following:

// Dribble: Team Unfollow
// Updated: 2020-05-23
// This script is made for demonstrative purposes only. 
// Use at your own risk. 
// Respect the Dribbble's policy and terms of use.
  
function initFollow(i) {
	setTimeout(function(){
		console.log(inputs[i]);
		if ($(inputs[i]).hasClass('followed-by-current-user')) {
			console.log('Unfollowing...');
			inputs[i].querySelector('.form-btn.tipsy-mobile-disabled.link-btn.unfollow').click();
		} else {
			console.log('Skipping...');
		}
	}, Math.floor((Math.random() * 10000))+5);
}
var inputs = document.querySelectorAll('.player-cards .scrolling-row.player');
for(var i=1; i<inputs.length;i++) {
	initFollow(i);
	console.log('Running...please wait...');
}

Mix: Auto follow and unfollow script for Dribbble

If you want to follow and unfollow users with the same script, try this:

// Dribble: Team Follow & Unfollow
// Updated: 2020-05-23
// This script is made for demonstrative purposes only. 
// Use at your own risk. 
// Respect the Dribbble's policy and terms of use.
  
function initFollow(i) {
	setTimeout(function(){
		console.log(inputs[i]);
		if ($(inputs[i]).hasClass('followed-by-current-user')) {
			console.log('Unfollowing...');
			inputs[i].querySelector('.form-btn.tipsy-mobile-disabled.link-btn.unfollow').click();
		} else {
			console.log('Following...');
			inputs[i].querySelector('.form-btn.tipsy-mobile-disabled.light-btn.follow').click();
		}
	}, Math.floor((Math.random() * 10000))+5);
}
var inputs = document.querySelectorAll('.player-cards .scrolling-row.player');
for(var i=1; i<inputs.length;i++) {
	initFollow(i);
	console.log('Running...please wait...');
}

Hi you! If the code is working, leave a comment below. It means a lot to everyone.

Let me know if the script stops working for you, if you like it or if you have some ideas for new posts.

Enjoy the day!

Buy me a coffeeWanna support the page?!

Did you like this? Share it!

9 comments on “Dribbble auto follow script for Teams and Members

Hi it is not working :
SyntaxError: Unexpected identifier ‘p’. Expected ‘)’ to end an argument list.

Hi, thanks for the comment. Should be ok now…

Error log:
SyntaxError: Unexpected identifier ‘z’. Expected ‘)’ to end an argument list.

Hi Matt, thanks for the heads up. Let me know if the new update is working…

Please provide us with unfollow script 🙂

Hi. I just finished the unfollow script. Let us know if it works well…

please share unfollow script with us. BTW thank you lot for this script.

Hi Ronnel, the unfollow script is done. Let us know if it works well…

NOW IT’S WORKING OR NOT??

Leave Comment