Utiliza Google Chrome para tomar notas

Hay infinidad de programas para tomar notas, escribir cualquier tipo de texto con imágenes o lo que necesites pero a veces solo necesitamos escribir algo sencillo, sin ningún tipo de formato especial, solo texto plano y llano, para esto puedes hacer uso de Google Chrome, pero no hay necesidad de instalar extensión alguna u otra aplicación, solo hace falta escribir la siguiente línea de texto en la barra de direcciones y presionar Enter.

data:text/html, <html contenteditable>

Al ingresar te darás cuenta como toda la pantalla de Chrome se convierte en un sencillísimo editor de texto, que es todo lo que necesites, para escribir alguna nota o idea que se te haya ocurrido y no debes dejar escapar.

Si te parece demasiado sencillo, puedes utilizar algunos de los siguiente códigos que agregan un poco de estilo y formato al editor dentro de Google Chrome :

data:text/html, <textarea style="font-size: 1.5em; width: 100%; height: 100%; border: none; outline: none" autofocus />

data:text/html, <body contenteditable style="font-size:2rem;line-height:1.4;max-width:60rem;margin:0 auto;padding:4rem;">

data:text/html, <title>Text Editor</title><body contenteditable style="font-size:2rem;line-height:1.4;max-width:60rem;margin:0 auto;padding:4rem;">

data:text/html;charset=utf-8, <html contenteditable>

data:text/html;charset=utf-8, <title>TextEditor</title><body contenteditable style="font-size:2rem;line-height:1.4;max-width:60rem;margin:0 auto;padding:4rem;" spellcheck="false">

data:text/html;charset=utf-8, <title>TextEditor</title><body contenteditable style="font-size:2rem;font-family:monaco;line-height:1.4;max-width:60rem;margin:0 auto;padding:4rem;" spellcheck="false"><h1>Editor</h1><p>Empieza acá.

data:text/html, <style>html,body{margin: 0; padding: 0;}</style><textarea style="font-size: 1.5em; line-height: 1.5em; background: %23000; color: %23EEE; width: 100%; height: 100%; border: none; outline: none; margin: 0; padding: 90px;" autofocus placeholder="Empieza a escribir" />

data:text/html,<pre onkeyup="(function(d,t){d[t]('iframe')[0].contentDocument.body.innerHTML = d[t]('pre')[0].textContent;})(document,'getElementsByTagName')" style="width:100%;height:48%;white-space:pre-wrap;overflow:auto;" contenteditable></pre><iframe style="width:100%;height:48%">

Lo olvides guardar la página editor a los marcadores para no tener que escribirlo de nuevo.

Vía: Vagabundia