<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Rodrigo Nascimento</title>
    <description>The latest articles on Forem by Rodrigo Nascimento (@rodrigocnascimento).</description>
    <link>https://forem.com/rodrigocnascimento</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F32357%2Fadbeb148-3317-42e2-b923-20f7b86dc56d.png</url>
      <title>Forem: Rodrigo Nascimento</title>
      <link>https://forem.com/rodrigocnascimento</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/rodrigocnascimento"/>
    <language>en</language>
    <item>
      <title>I built my first Chrome extension because editing localStorage was annoying</title>
      <dc:creator>Rodrigo Nascimento</dc:creator>
      <pubDate>Fri, 22 May 2026 22:27:03 +0000</pubDate>
      <link>https://forem.com/rodrigocnascimento/i-built-my-first-chrome-extension-because-editing-localstorage-was-annoying-1ji1</link>
      <guid>https://forem.com/rodrigocnascimento/i-built-my-first-chrome-extension-because-editing-localstorage-was-annoying-1ji1</guid>
      <description>&lt;p&gt;I finally published my first Chrome extension.&lt;/p&gt;

&lt;p&gt;It is called &lt;strong&gt;DataSidekick&lt;/strong&gt;, and I built it because I got tired of fighting DevTools every time I needed to inspect or edit &lt;code&gt;localStorage&lt;/code&gt; and &lt;code&gt;sessionStorage&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Feq0pedg5244m5qk5pmn6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Feq0pedg5244m5qk5pmn6.png" alt="DataSideKick opend view" width="800" height="335"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Also, yes, I paid the legendary &lt;strong&gt;$5 Chrome Web Store developer fee&lt;/strong&gt;, so emotionally I had to ship something. Otherwise, it would have been the worst investment portfolio of my life.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is DataSidekick?
&lt;/h2&gt;

&lt;p&gt;DataSidekick is a Chrome extension that opens as a side panel and helps developers work with browser storage in a cleaner way.&lt;/p&gt;

&lt;p&gt;Instead of digging through DevTools and editing raw strings, you get a focused interface for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;viewing &lt;code&gt;localStorage&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;viewing &lt;code&gt;sessionStorage&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;searching by key or value&lt;/li&gt;
&lt;li&gt;editing simple values inline&lt;/li&gt;
&lt;li&gt;editing JSON visually&lt;/li&gt;
&lt;li&gt;importing data from JSON&lt;/li&gt;
&lt;li&gt;exporting data to JSON&lt;/li&gt;
&lt;li&gt;hiding noisy keys&lt;/li&gt;
&lt;li&gt;requesting access per site/origin&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can check it out here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://datasidekick.site" rel="noopener noreferrer"&gt;https://datasidekick.site&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;Browser storage is simple until it is not.&lt;/p&gt;

&lt;p&gt;A lot of apps store useful state in &lt;code&gt;localStorage&lt;/code&gt;, but the default developer experience is still pretty rough:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nl"&gt;"user"&lt;/span&gt;&lt;span class="p"&gt;:{&lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="s2"&gt;"Rodrigo"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nl"&gt;"settings"&lt;/span&gt;&lt;span class="p"&gt;:{&lt;/span&gt;&lt;span class="nl"&gt;"theme"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="s2"&gt;"dark"&lt;/span&gt;&lt;span class="p"&gt;}}}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Technically readable? Sure.&lt;/p&gt;

&lt;p&gt;Pleasant to edit? Absolutely not.&lt;/p&gt;

&lt;p&gt;I wanted something closer to a small developer cockpit: open the panel, find the key, inspect the value, edit it safely, and move on.&lt;/p&gt;

&lt;h2&gt;
  
  
  The feature I cared about most: visual JSON editing
&lt;/h2&gt;

&lt;p&gt;The main idea was simple:&lt;/p&gt;

&lt;p&gt;If a value is valid JSON, don't treat it like a random string.&lt;/p&gt;

&lt;p&gt;So instead of this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nl"&gt;"a"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="s2"&gt;"b"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nl"&gt;"settings"&lt;/span&gt;&lt;span class="p"&gt;:{&lt;/span&gt;&lt;span class="nl"&gt;"theme"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="s2"&gt;"dark"&lt;/span&gt;&lt;span class="p"&gt;}}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;DataSidekick displays structured JSON in a more readable way, so it becomes easier to inspect and edit nested values.&lt;/p&gt;

&lt;p&gt;That was the first “okay, this is actually useful” moment.&lt;/p&gt;

&lt;h2&gt;
  
  
  Chrome permissions were the real boss fight
&lt;/h2&gt;

&lt;p&gt;The extension needs to read and edit storage from the current page. That means permissions matter.&lt;/p&gt;

&lt;p&gt;At first, I had an unnecessary permission in the manifest and the Chrome Web Store rejected the extension.&lt;/p&gt;

&lt;p&gt;Fair enough. My bad.&lt;/p&gt;

&lt;p&gt;The final approach is more intentional:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;no unnecessary &lt;code&gt;downloads&lt;/code&gt; permission&lt;/li&gt;
&lt;li&gt;site access is requested when needed&lt;/li&gt;
&lt;li&gt;the user sees when access is required&lt;/li&gt;
&lt;li&gt;data stays local in the browser&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For a tool that touches browser storage, I think this transparency is important.&lt;/p&gt;

&lt;h2&gt;
  
  
  Exporting without the downloads permission
&lt;/h2&gt;

&lt;p&gt;One small lesson: exporting a JSON file does not necessarily require the Chrome &lt;code&gt;downloads&lt;/code&gt; permission.&lt;/p&gt;

&lt;p&gt;This is enough for my use case:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;blob&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;Blob&lt;/span&gt;&lt;span class="p"&gt;([&lt;/span&gt;&lt;span class="nx"&gt;JSON&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;stringify&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;payload&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;)],&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;application/json&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;url&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;URL&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;createObjectURL&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;blob&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;createElement&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;a&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;a&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;href&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;url&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="nx"&gt;a&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;download&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;datasidekick-export.json&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="nx"&gt;a&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;click&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

&lt;span class="nx"&gt;URL&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;revokeObjectURL&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;url&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Since I was not using &lt;code&gt;chrome.downloads.download()&lt;/code&gt;, the permission was unnecessary.&lt;/p&gt;

&lt;p&gt;Chrome Web Store noticed. Chrome Web Store was right.&lt;/p&gt;

&lt;p&gt;Painful, but useful.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current features
&lt;/h2&gt;

&lt;p&gt;The first public version includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Chrome Side Panel UI&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;localStorage&lt;/code&gt; and &lt;code&gt;sessionStorage&lt;/code&gt; support&lt;/li&gt;
&lt;li&gt;visual JSON editor&lt;/li&gt;
&lt;li&gt;key/value search&lt;/li&gt;
&lt;li&gt;import/export JSON&lt;/li&gt;
&lt;li&gt;per-site access flow&lt;/li&gt;
&lt;li&gt;hidden keys&lt;/li&gt;
&lt;li&gt;noisy key filtering&lt;/li&gt;
&lt;li&gt;favorites&lt;/li&gt;
&lt;li&gt;dark/light mode&lt;/li&gt;
&lt;li&gt;font size controls&lt;/li&gt;
&lt;li&gt;playground on the website&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The playground
&lt;/h2&gt;

&lt;p&gt;I also added a playground to the site so people can understand the idea before installing anything.&lt;/p&gt;

&lt;p&gt;That was important because browser storage tools can feel a bit sensitive. I wanted people to see what the extension does before giving it access to a page.&lt;/p&gt;

&lt;p&gt;Try it here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://datasidekick.site" rel="noopener noreferrer"&gt;https://datasidekick.site&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I learned
&lt;/h2&gt;

&lt;p&gt;A few things I took away from this first release:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Small dev tools are still worth building.&lt;/li&gt;
&lt;li&gt;Chrome extension permissions deserve real attention.&lt;/li&gt;
&lt;li&gt;A simple UX decision can matter more than a complex feature.&lt;/li&gt;
&lt;li&gt;Shipping to a store is very different from “it works locally”.&lt;/li&gt;
&lt;li&gt;Paying $5 makes you emotionally committed.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What's next?
&lt;/h2&gt;

&lt;p&gt;This is my first Chrome extension, but definitely not the last.&lt;/p&gt;

&lt;p&gt;Some ideas for future versions:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IndexedDB support&lt;/li&gt;
&lt;li&gt;better diff view&lt;/li&gt;
&lt;li&gt;undo/redo&lt;/li&gt;
&lt;li&gt;schema validation&lt;/li&gt;
&lt;li&gt;storage history&lt;/li&gt;
&lt;li&gt;better JSON editing interactions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For now, I am happy it is live.&lt;/p&gt;

&lt;p&gt;If you work with &lt;code&gt;localStorage&lt;/code&gt; or &lt;code&gt;sessionStorage&lt;/code&gt; often, I would love your feedback:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://datasidekick.site" rel="noopener noreferrer"&gt;https://datasidekick.site&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Or plugin link: &lt;a href="https://chromewebstore.google.com/detail/datasidekick/mjeonoddcckacjbeeaplmlnppacofgjb" rel="noopener noreferrer"&gt;DataSideKick&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Built by a developer who just wanted to stop editing JSON like a caveman.&lt;/p&gt;

</description>
      <category>chromeextension</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>tooling</category>
    </item>
    <item>
      <title>From Zero to Hero</title>
      <dc:creator>Rodrigo Nascimento</dc:creator>
      <pubDate>Sun, 12 Apr 2026 04:45:45 +0000</pubDate>
      <link>https://forem.com/rodrigocnascimento/from-zero-to-hero-1oed</link>
      <guid>https://forem.com/rodrigocnascimento/from-zero-to-hero-1oed</guid>
      <description>&lt;p&gt;A maioria aprende programação do jeito errado!&lt;/p&gt;

&lt;p&gt;Comecei a programar com 12 anos, em um trabalho da escola.&lt;/p&gt;

&lt;p&gt;Nada demais. Só curiosidade e vontade de fazer aquilo funcionar.&lt;/p&gt;

&lt;p&gt;Hoje, mais de 20 anos depois, eu posso dizer uma coisa com tranquilidade:&lt;/p&gt;

&lt;p&gt;A maioria das pessoas aprende programação do jeito errado.&lt;/p&gt;

&lt;p&gt;E não é culpa delas.&lt;/p&gt;

&lt;p&gt;O problema é o caminho que vendem por aí:&lt;/p&gt;

&lt;p&gt;"Aprenda IA e ature milhões"&lt;br&gt;
"copie projeto pronto"&lt;br&gt;
"viva de SaaS"&lt;br&gt;
"aprenda rápido"&lt;/p&gt;

&lt;p&gt;Só que isso não te ensina a programar de verdade.&lt;/p&gt;

&lt;p&gt;Durante minha carreira, trabalhando com sistemas web, principalmente em finanças, eu vi isso se repetir várias vezes. Gente travando no básico, sem entender o que está fazendo, dependendo de tutorial pra tudo.&lt;/p&gt;

&lt;p&gt;E eu também já passei por isso.&lt;/p&gt;

&lt;p&gt;Já fui freelancer, já trabalhei em agência, já estive em empresa global… e em todos esses lugares, uma coisa sempre foi clara:&lt;/p&gt;

&lt;p&gt;-&amp;gt; quem domina a base, resolve&lt;br&gt;
-&amp;gt; quem não domina, trava&lt;/p&gt;

&lt;p&gt;Não existe uma única forma "certa" de aprender.&lt;/p&gt;

&lt;p&gt;Mas existe, sim, uma forma pior:&lt;br&gt;
pular fundamentos e correr atrás de atalho.&lt;/p&gt;

&lt;p&gt;Se você está começando agora, provavelmente já caiu nessa.&lt;/p&gt;

&lt;p&gt;E tudo bem.&lt;/p&gt;

&lt;p&gt;Mas se quiser sair disso de verdade, o caminho é outro:&lt;br&gt;
menos hype, mais base&lt;br&gt;
menos tutorial, mais entendimento&lt;br&gt;
menos pressa, mais consistência&lt;/p&gt;

&lt;p&gt;É isso que eu quero compartilhar por aqui.&lt;/p&gt;

&lt;p&gt;Se você está no zero (ou quase lá), dá pra chegar no 1.&lt;/p&gt;

&lt;p&gt;Mas não vai ser copiando código.&lt;/p&gt;

</description>
      <category>learn</category>
      <category>from0to1</category>
      <category>hekping</category>
      <category>dev</category>
    </item>
    <item>
      <title>hello world</title>
      <dc:creator>Rodrigo Nascimento</dc:creator>
      <pubDate>Mon, 19 Apr 2021 02:26:46 +0000</pubDate>
      <link>https://forem.com/rodrigocnascimento/hello-world-n5n</link>
      <guid>https://forem.com/rodrigocnascimento/hello-world-n5n</guid>
      <description>&lt;p&gt;Hello World!&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
