Here's a #JavaScript bookmarklet to make a browser tab a quick-and-easy text editor:
data:text/html, <head><title>Notes</title></head><body style='padding:0;margin:0;overflow:hidden;width:100%;height:100%;' contenteditable><textarea style="width:100%;position:absolute;top:0;left:0;right:0;bottom:0;padding:1em 10%;box-sizing:border-box;font-size:12px;font-family:monospace"></textarea><script>document.querySelector('textarea').focus()</script>