floverfelt.org

Me

Thoughts, notes, etc.

View the Site on GitHub

View my GitHub Profile

View my LinkedIn

Email

26 March 2021

Reflections on Building a Chrome Extension

by Florian

If you want to learn how to build a web app, consider writing a Chrome Extension first.

Context

I recently built the “Three Gratitudes” Chrome extension. It’s a pretty simple extension that locks your browser for 1 minute everyday until you write down three things you’re grateful for. It was a bit of a Lenten project and also something I’d been wanting for myself.

Anyway, I was absolutely floored by how enjoyable it is to build a Chrome Extension and I knew I had to write about it.

Chrome Extensions are mini web apps

Chrome Extensions basically have all of the components of a modern web app, but stripped down to their simplest implementation. If you’re trying to learn the basics of building a web application, Chrome extensions provide everything you need:

  1. A simple web “routing” system. Perhaps this is too simple to even call out, but in a Chrome extension, you just drop in the html you want, navigate there in the URL bar and the webpage shows up. For new developers trying to understand the basics of HTML/CSS, you don’t have to learn NodeJs, routes, templating engines or anything. Drop the file in and Chrome will render it at that path. Super simple.
  2. A minimal but functional backend. Chrome provides a messaging API by which the frontend of an extension can interact with the backend Chrome APIs. The interface mimics a basic REST API and it’s a super simple way to introduce new developers to the concept of backend/middleware functionality (and how to communicate with it) without having to spin up a seperate app, write the endpoints yourself, or learn response codes.
  3. A mini database. The Chrome storage API allows you to store small amounts of user data in Chrome’s local storage or cloud sync storage. For very basic CRUD apps, this is probably all you’ll need. It doesn’t use SQL or anything, but it introduces the concept of persistant storage and how/when to use it. If you want, you could even drop a SQLite database into the extension and use that.

There’s a few other minor things that are nice about Chrome extension development:

The only real drawback I noticed to extension development was the lack of hot reloading. While developing, I had to manually refresh the Chrome extension in order to update the background (backend) scripts. The HTML/CSS/JS on the frontend hot-reloaded fine, but the backend did not and this got kind of tedious after a bit.

I would definitely recommend writing a Chrome (or any browser) extension. It’s a lot of fun and has been one of my more successful side projects.

tags: programming - posts