Skip to content

Instantly share code, notes, and snippets.

@cborac
Created October 29, 2020 14:50
Show Gist options
  • Save cborac/27b78f21f6ea191dfc5b2e87cee313a6 to your computer and use it in GitHub Desktop.
Save cborac/27b78f21f6ea191dfc5b2e87cee313a6 to your computer and use it in GitHub Desktop.
// Just execute this script on console on a board
Array.from(document.getElementsByClassName("hCL")).filter(x => !x.src.startsWith("https://i.pinimg.com/75x75_RS")).forEach(x => {
const btn = document.createElement("button")
btn.onclick = () => window.open(x.src.split("/236x/").join("/originals/"))
btn.innerHTML = "Download"
btn.style = "height: 25px; width: auto; position: absolute; z-index: 100;"
x.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement.prepend(btn)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment