#Twitter ####MassFollow
- Open any user Follow list like mine https://twitter.com/pierre_co/followers
- Copy this javascript, paste on console box CMD + ALT + J (Mac) and press enter
javascript:var inputs = document.getElementsByClassName('button-text follow-text');
for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
####MassUnfavorite
- Open https://twitter.com/favorites
- Copy this javascript, paste on console box CMD + ALT + J (Mac) and press enter
- Refresh your page and repeat
javascript:var inputs = document.getElementsByClassName('ProfileTweet-actionButtonUndo js-actionFavorite');
for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
####MassFavorite
- Open https://twitter.com/search-home
- Write your hashtag keywords and press Enter
- Click to "Direct" and scrol down
- Copy this javascript, paste on console box CMD + ALT + J (Mac) and press enter
javascript:var inputs = document.getElementsByClassName('ProfileTweet-actionButton js-actionButton js-actionFavorite');
for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
###Tools
#####Unfollow users not following you with interface https://toolset.co/twitter/unfollow/
#####Copy follower of a user with interface https://toolset.co/twitter/follow/copy-follow/
#Facebook ####Add all suggested friends
- Open https://www.facebook.com/friends/requests/
- Copy this javascript, paste on console box CMD + ALT + J (Mac) and press enter
for( i = 1;i<document.getElementsByClassName("_42ft _4jy0 FriendRequestAdd addButton _4jy3 _517h _51sy").length;i++){
document.getElementsByClassName("_42ft _4jy0 FriendRequestAdd addButton _4jy3 _517h _51sy")[i].click();
}
void(0);
####Invite All People to Event Page
- Open event page and select
- Select the show more friends in the invite friends box
- Click on the Choose From Your Friends options
- In the box that opens, click on All Friends
- Scroll down till all the freinds get loaded
- Copy this javascript, paste on console box CMD + ALT + J (Mac) and press enter
a = document.getElementsByClassName("_1v32 _1v34");
arr = []
for (var i = 0;i<a.length;i++){
arr.push(a[i].getAttribute("aria-labelledby").split("-")[0]);}
string = "{";
for (var k = 0;k<arr.length;k++){
string+="\"";
string+=arr[k];
string+="\":1,";}
string = string.slice(0,string.length-1);
string+="}"
document.getElementsByName("profileChooserItems")[0].setAttribute("value",string);
document.getElementsByClassName("_42ft _4jy0 layerConfirm uiOverlayButton _4jy3 _4jy1 selected _51sy")[0].click();