Released a Chrome Extension `AtodeYomu` to Make Reading List More Convenient

Introduction

Sometimes you find an article you want to read, but you don’t have time right now. Or it’s too long to finish in one go, so you want to save it and come back later. I used to keep a “Read Later” folder in my bookmarks, but the list kept piling up with both read and unread pages, and managing it became a hassle.

Chrome’s built-in Reading List is useful if you keep the side panel open, but the panel narrows the screen, and accessing the feature without the side panel takes several steps.

To solve this, I created and released a Chrome extension called AtodeYomu that enhances the Reading List. The name comes from my old “Read Later” bookmark folder (“あとで読む” in Japanese).

You can get it from the Chrome Web Store:

What It Does

It’s easier to show than to explain, so here’s a short demo video:

With AtodeYomu, you can:

Since the problem I wanted to solve was small, the extension itself stays intentionally simple.

Development Notes

Here are a few notes and small takeaways from building AtodeYomu.

As usual, the code is open on GitHub:

This wasn’t a project with big technical challenges, but I decided to try Svelte for the UI. The floating button in the bottom-right corner is controlled from content_scripts, and I built it with Svelte. I usually use React, but I wanted a change of pace, and given the small size of the extension, I figured the bundle size wouldn’t be an issue.

Initially, I planned to build a popup UI in Svelte as well, to provide extra features like bulk-deleting read pages or toggling the auto-mark-as-read option. But once I finished the current feature set, it felt good enough, and adding a popup felt like YAGNI, so I dropped it.

Another reason I chose Svelte is its simple animation system. The transition for the “mark as read” button animation was trivial to implement with Svelte’s built-in transition.

Finally, a couple of small lessons learned:

Closing

If you ever found Chrome’s Reading List a little inconvenient, give AtodeYomu a try.
And if you run into usability issues or have feedback, feel free to open an issue on GitHub. I’ll take a look when I can.

Previous

How to Fix Encoding::CompatibilityError When Running git-pr-release on GitHub Actions ubuntu-slim

Next

Creating a GitHub Actions Workflow to Start/Stop a CloudSQL Instance Manually and Automatically Stop at Night

PR

Related Posts