arye321

Results 7 comments of arye321

> This was not working for me, as it selects the entire div for where all the other posts live as well, I edited your selector to get the parent...

not sure if its possible to add this import to the extractor, but using this package bypasses cloudflares 403 page and returns the real page source `pip install cloudscraper` ```python...

i just edited the app for myself so the video pauses when notification is closed (slided) i removed .setOngoing(true) and added .setDeleteIntent(NotificationCloser.getDismissIntent(NOTIFICATION_ID, context))

is anyone working on it ? i'm considering. it's so annoying doing manually every time

```js window.scrollTo(0, 1000); setTimeout(function() { window.scrollTo(0, 0); }, 1); ``` this shows the button edit: changed 320 to 1000, 320 didnt work on some other page

I know its scuffed but it works, ```js window.scrollTo(0, 1000); setTimeout(function() { window.scrollTo(0, 0); }, 1); setTimeout(function() { document.querySelector('div[aria-label="Home timeline"]').querySelector('button[aria-haspopup="menu"]').click() }, 100); setTimeout(function() { Array.from(document.querySelectorAll('span')).find(span => span.textContent.trim() === "Likes").click() },...