This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//For unfollowing | |
var inputs = document.getElementsByClassName('icon icon-button-unfollow pointer action-button'); | |
for(var i=0; i<inputs.length;i++) { | |
inputs[i].click(); } | |
//For following | |
var inputs = document.getElementsByClassName('icon icon-button-follow pointer action-button'); | |
for(var i=0; i<inputs.length;i++) { | |
inputs[i].click(); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function largestPhoneCalculator(pn1, pn2, pn3) { | |
var aPhoneNumber = []; | |
var stringNumber = pn1.toString(); | |
for (var i = 0, lngt = stringNumber.length; i < lngt; i++) { | |
aPhoneNumber.push(+stringNumber.charAt(i)); | |
} | |
for (var i = 0, sum = 0; i < aPhoneNumber.length; sum += aPhoneNumber[i++]); | |
//console.log(sum); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: | |
var inputs = document.getElementsByClassName('button-text follow-text'); | |
for(var i=0; i<inputs.length;i++) { | |
inputs[i].click(); } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: | |
var data=""; | |
e=document.getElementsByClassName("FriendRequestOutgoing"); | |
for(var i=0; i<e.length; i++) | |
{ | |
v=e[i].getAttribute("data-profileid"); | |
if(v) data+=v+"\n" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript: | |
i = 0; | |
minutos = 4; // cambia esto de acuerdo al tiempo que quieras | |
cuenta = minutos * 60; | |
function autoScroll() | |
{ | |
if (i < cuenta) | |
{ |
NewerOlder