Last active
August 14, 2020 18:26
-
-
Save alanbosco/0367e41f74860af9a10a9dd0a529593b to your computer and use it in GitHub Desktop.
Instagram Current follow requests to links
This file contains 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
// Go to https://www.instagram.com/accounts/access_tool/current_follow_requests ๐ | |
document.querySelectorAll('.-utLf').forEach(function(item){ | |
username = item.innerHTML; | |
item.innerHTML = '<a href="https://instagram.com/'+username+'/" target="_blank">'+username+'</a>' | |
}) | |
// if any errors check if the className is correct. ๐ | |
// V2 - clicking view more will run the function. | |
function toLink() { | |
document.querySelectorAll('.-utLf').forEach(function (item) { | |
if (item.childElementCount == 0) { | |
username = item.innerHTML; | |
item.innerHTML = '<a href="https://instagram.com/' + username + '/" target="_blank">' + username + '</a>' | |
} | |
}) | |
} | |
document.querySelector('.sqdOP.L3NKy.y3zKF').addEventListener('click', function () { | |
this.previousSibling.addEventListener('DOMNodeInserted', toLink()) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment