Easy way to automate browser tasks
Quick win: just one copy/paste
right click -> pick Inspect
prompt("", (function(){
let header = document.querySelector('h1').innerText;
let address = window.location.href;
return `* [${header}](${address})`
})())
// find the code here:
// https://jsbin.com/cononib/1/edit?html,js,output