Facebook no ads

Makes sponsored feeds invisible on facebook.com

< 脚本 Facebook no ads 的反馈

提问 / 留言

§
发布于:2020-09-15

I think I found a new method that does the job:

const removeAdsNew = () => {
let list = document.querySelectorAll(`[aria-label="Sponsored"]`);

for (let el of list) {
let story = el.closest('[data-pagelet]');
story.remove();
}
}

then I use it with
const throttleKill = throttle(removeAdsNew, 50);

and that seems to work so far

发布留言

登录以发布留言。