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
| // Copy-paste it to the browser console on Patreon posts page | |
| setInterval(function() { | |
| let clicked = Array.from(document.querySelectorAll('a')).some( | |
| item => { | |
| if (item.href.startsWith('https://www.patreon.com/file?') && !item.downloaded) { | |
| item.click() | |
| item.downloaded = true | |
| return true | |
| } | |
| } |
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
| /* | |
| router.js | |
| Using @nuxtjs/router | |
| All pages from folder 'pages/root-domain' will be available on 'example.com' | |
| All pages from folder 'pages/sub-domain' will be available on 'foo-bar.example.com' | |
| All other pages will be available on any domain | |
| */ |
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
| (function(){ | |
| $('.ns-view-toolbar-button-main-select-all').click(); | |
| $('.ns-view-toolbar-button-delete').click(); | |
| setTimeout(arguments.callee,5000); | |
| })(); |