Dribbble auto follow script is a way to easily follow your favourite Teams or Members.
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:
- Go to the page with accounts
- Open one shot/project
- Open the Console pressing Ctrl + Shift + J (Windows / Linux) or Cmd + Opt + J (Mac)
- Copy the code below and paste it into the Console tab
- Keep the Console window small
- 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:
- Go to Shots page or search for some shots
- Open one shot/project
- Open the Console pressing Ctrl + Shift + J (Windows / Linux) or Cmd + Opt + J (Mac)
- Copy the code below and paste it into the Console tab
- Keep the Console window small
- 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!
9 comments on “Dribbble auto follow script for Teams and Members”
Matt
Hi it is not working :
SyntaxError: Unexpected identifier ‘p’. Expected ‘)’ to end an argument list.
Milos Lukic
Hi, thanks for the comment. Should be ok now…
Matt
Error log:
SyntaxError: Unexpected identifier ‘z’. Expected ‘)’ to end an argument list.
Milos Lukic
Hi Matt, thanks for the heads up. Let me know if the new update is working…
man
Please provide us with unfollow script 🙂
Milos Lukic
Hi. I just finished the unfollow script. Let us know if it works well…
Ronnel
please share unfollow script with us. BTW thank you lot for this script.
Milos Lukic
Hi Ronnel, the unfollow script is done. Let us know if it works well…
jONI
NOW IT’S WORKING OR NOT??