Created
May 6, 2017 21:01
-
-
Save max-frai/2243e4c8423c04f1b262d4a4eccb9ed6 to your computer and use it in GitHub Desktop.
Remove outgoing facebook friend requests
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
var interval = window.setInterval(function() { | |
var moreButton = document.querySelector('a[ajaxify*="outgoing/more"]'); | |
if (moreButton) | |
{ | |
moreButton.click(); | |
console.log('loading more...'); | |
} | |
else | |
{ | |
//window.clearInterval(interval); | |
var outgoing = document.querySelector('button.FriendRequestOutgoing'); | |
if (!outgoing) | |
{ | |
window.clearInterval(interval); | |
console.log('FINISH'); | |
} | |
else | |
{ | |
try { | |
outgoing.click(); | |
document.querySelector('li.FriendListCancel').click(); | |
window.setTimeout(function() { | |
document.querySelector('button.layerConfirm').click(); | |
outgoing.parentNode.removeChild(outgoing); | |
}, 500); | |
}catch(e) {console.log(e);} | |
} | |
} | |
}, 1000); |
Я очень Вам @LiFeAiR благодарен за быстрый ответ, очень приятно что помогаете, но мне нужен вот этот код! Нужно в другой ветке скорее всего писать! Ссылка: https://gist.github.com/max-frai/ab672ecbd5dea7cd49af6d25599eb830
Remove outgoing facebook friend requests part 2.
var buttons = document.querySelectorAll('div[class="x1i10hfl xjbqb8w x6umtig x1b1mbwd xaqea5y xav7gou x1ypdohk xe8uvvx xdj266r x11i5rnm xat24cr x1mh8g0r xexx8yu x4uap5 x18d9i69 xkhd6sd x16tdsg8 x1hl2dhg xggy1nq x1o1ewxj x3x9cwd x1e5q0jg x13rtm0m x87ps6o x1lku1pv x1a2a7pz x9f619 x3nfvp2 xdt5ytf xl56j7k x1n2onr6 xh8yej3"]');
console.log('Number of elements found: ' + buttons.length);
var index = 0;
var interval = window.setInterval(function() {
if (index >= buttons.length) {
window.clearInterval(interval);
return;
}
buttons[index].click();
index++;
}, 1000);
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Но попробуйте такой скрипт
он проще предыдущего и работает быстрее