/************************************************************************ * CLIENT ONE-LINERS *************************************************************************/ // Create bookmark and set this to URL to skip ads. javascript:void(document.querySelector('video').currentTime = document.querySelector('video').duration) // Use this to click all links. Array.from(document.querySelectorAll('a.block')).forEach(a => a.click()) // Grab all the images from a page (namely instagram) Array.from(document.images).forEach(img => console.log(img.getAttribute('src'))) // Like all facebook posts. Array.from(document.body.querySelectorAll('.UFILikeLink')).forEach((a) => a.click()) // Selecting wildcard classes. Array.from(document.querySelectorAll('div[class^="ManageSection__column-left"] .dp-checkbox')).forEach((a) => a.click()) /************************************************************************ * SERVER ONE-LINERS *************************************************************************/ // Use Now to deploying static app serving a single page app. ns ./build --cmd 'list ./content -s'