Skip to content

Instantly share code, notes, and snippets.

@jamesmacfie
Created July 26, 2018 21:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesmacfie/899b04471c81d0445d2015a147f86602 to your computer and use it in GitHub Desktop.
Save jamesmacfie/899b04471c81d0445d2015a147f86602 to your computer and use it in GitHub Desktop.
Only display refurbished Apple laptops with 16GB RAM and 512GB HDD
// Post this in your console
[].filter.call(document.querySelector('.box-content').querySelectorAll('table'), (n) => {
if (n.innerText.indexOf('16GB') === -1 || n.innerText.indexOf('512GB') === -1) {
n.style.display = 'none';
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment