Last active
April 23, 2022 12:07
-
-
Save Beyarz/6f1f4593b2e4a17eba53c68d8d633d0d to your computer and use it in GitHub Desktop.
devurls.com filter by day
This file contains hidden or 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
| // ==UserScript== | |
| // @name Filter | |
| // @version 1.0 | |
| // @description Filter by day | |
| // @author You | |
| // @match https://devurls.com | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=devurls.com | |
| // @grant none | |
| // ==/UserScript== | |
| (function () { | |
| 'use strict' | |
| document.querySelectorAll('[data-view="day"]').forEach(el => { | |
| el.click() | |
| setTimeout(() => { | |
| if (el.parentElement.parentElement.firstChild.title == "no articles") { | |
| console.log(el, " has no articles, removing") | |
| el.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.remove() | |
| } | |
| }, 2500) | |
| }) | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment