zbluebugz / facebook-clean-my-feeds

Clean up Facebook feeds by hiding sponsored, suggestions and other posts based on keywords.
GNU General Public License v3.0
113 stars 13 forks source link

Posts getting past "Suggested for you" filter #70

Open mr-pokemon opened 1 week ago

mr-pokemon commented 1 week ago

Found that I was still getting "Suggested for you" posts

I think I was able to fix it by adding the following in the nf_isSuggested() queries

'div[aria-posinset] > div > div > div > div > div > div:nth-of-type(2) > div > div > div:nth-of-type(2) > div > div:nth-of-type(2) > div > div:nth-of-type(2) > span > div > span:nth-of-type(1)',
'div[aria-describedby] > div > div > div > div > div > div:nth-of-type(2) > div > div > div:nth-of-type(2) > div > div:nth-of-type(2) > div > div:nth-of-type(2) > span > div > span:nth-of-type(1)',
zbluebugz commented 1 week ago

Thanks for the feedback.

I noticed that they were slipping through a few days ago and started to get a few more today.

Your suggested queries will be added to the new queries I've created to collect those posts.

'div[aria-posinset] span> div[id] > span:nth-of-type(1):not([style]):not([class])',
'div[aria-describedby] span> div[id] > span:nth-of-type(1):not([style]):not([class])',