Skip to content

Instantly share code, notes, and snippets.

@karappo-kun
Last active December 9, 2025 04:23
Show Gist options
  • Select an option

  • Save karappo-kun/dbbdb325888828f8e70d254c487ac7e2 to your computer and use it in GitHub Desktop.

Select an option

Save karappo-kun/dbbdb325888828f8e70d254c487ac7e2 to your computer and use it in GitHub Desktop.
Export follows list from Batoto quickly

Export follows list from Batoto quickly

  1. Go to https://bato.to/myfollows
  2. Open the JavaScript developer console by pressing F12.
  3. Copy the following code below and paste it in the console.
clear();
var $ = jQuery;
var follows = '';
$('div[style="display:inline-block; padding: 3px 20px 3px 6px; line-height: 20px;"] > a').each(function(){
	follows += $(this).text() + '\n';
});
console.log(follows);
  1. The console will proceed to list all your follows in the page, in a clipboard-friendly format. Screenshot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment