Skip to content

Instantly share code, notes, and snippets.

View duchuy962's full-sized avatar
💭
-noclip-

Đức Huy duchuy962

💭
-noclip-
View GitHub Profile
@jayremnt
jayremnt / unfollow-strangers.js
Created April 12, 2021 13:06
Unfollow all strangers on Facebook (include both users and pages)
/*
Script by JayremntB, 2021
Unfollow all strangers
Please copy all the code to make sure that you will not get any errors
*/
// You can change time delay below or not (in milliseconds, 1 s = 1000 ms)
let delayTime = 0;
// process, please don't modify
@egeste
egeste / unfollow-sc.js
Created May 29, 2018 21:55
Unfollow all on soundcloud
// 1. Go to https://soundcloud.com/you/following
// 2. Open javascript console.
// 3. Paste & hit <enter>
const unfollow = function() {
const button = document.querySelector('.sc-button-follow')
button && button.click()
button && setTimeout(unfollow, 0)
}; unfollow();