List of all data from a GET URL

PHOTO EMBED

Sun Oct 02 2022 18:52:41 GMT+0000 (Coordinated Universal Time)

Saved by @atatimelikethis #chrome #devtools #console

copy(
  Array.from(new URLSearchParams(window.location.search))
       .map(([key,val]) => `${key}: ${val}`)
       .join("\n")
)
content_copyCOPY

https://codepo8.github.io/dearconsole/scripts/get-url-data.html