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.
- Host: GitHub
- URL: https://github.com/wizrdsh/twitter-scripts
- Owner: wizrdsh
- Created: 2015-09-21T22:35:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-11T18:15:33.000Z (over 9 years ago)
- Last Synced: 2025-01-05T18:02:50.769Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 143 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 scrollinga = setInterval(function () {
window.scrollTo(0,document.body.scrollHeight);
$('.ProfileTweet-actionButton.js-actionButton.js-actionFavorite:visible').click();
}, 1000)// Enter this to end it:
clearInterval(a)
```