An open API service indexing awesome lists of open source software.

https://github.com/wizrdsh/twitter-scripts

Follow and/or favorite all twitter users on a page.
https://github.com/wizrdsh/twitter-scripts

Last synced: 3 months ago
JSON representation

Follow and/or favorite all twitter users on a page.

Awesome Lists containing this project

README

        

# Twitter Scripts (Bulk)
Bulk follows/favorites in your browser.

## Follow all users on the page:
```
// Enter this in your Developer Tools console.

a = setInterval(function () {
window.scrollTo(0,document.body.scrollHeight);
$('.not-following .user-actions-follow-button.js-follow-btn').click();
}, 1000);

// To end it just type "clearInterval(a)" and then e
```

## Favorite all tweets on the page:
```
// Enter the following in the Developer Tools, will favorite all tweets on the page and keep scrolling

a = setInterval(function () {
window.scrollTo(0,document.body.scrollHeight);
$('.ProfileTweet-actionButton.js-actionButton.js-actionFavorite:visible').click();
}, 1000)

// Enter this to end it:

clearInterval(a)
```